diff --git a/user_login_info/README.rst b/user_login_info/README.rst new file mode 100644 index 000000000..96ee4c709 --- /dev/null +++ b/user_login_info/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Login User Info Using Camera +============================ +* User login information for Odoo 15 community and Enterprise editions + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + + +Credits +------- +* Developer: (V15) Rosmy John, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/user_login_info/__init__.py b/user_login_info/__init__.py new file mode 100644 index 000000000..83fb3c8cb --- /dev/null +++ b/user_login_info/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controller +from . import models diff --git a/user_login_info/__manifest__.py b/user_login_info/__manifest__.py new file mode 100644 index 000000000..2c10bfe87 --- /dev/null +++ b/user_login_info/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + "name": "Login User Info Using Camera", + "version": "15.0.1.0.0", + "summary": "Login user information including images date and time will " + "collect the module using system camera", + "description": "System capture images of the user when they trying to login" + " and save into for the future usage" + "it will include information of log in date and time", + "category": "Extra Tools", + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "depends": ["account"], + "data": ["security/ir.model.access.csv", "views/user_log_views.xml"], + "external_dependencies": {"python": ["cv2"]}, + "license": "LGPL-3", + "images": ["static/description/banner.png"], + "installable": True, + "auto_install": False, + "application": True, +} diff --git a/user_login_info/controller/__init__.py b/user_login_info/controller/__init__.py new file mode 100644 index 000000000..190b702db --- /dev/null +++ b/user_login_info/controller/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import login_info diff --git a/user_login_info/controller/login_info.py b/user_login_info/controller/login_info.py new file mode 100644 index 000000000..039e69bf1 --- /dev/null +++ b/user_login_info/controller/login_info.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +import base64 +import cv2 +import os +from odoo.addons.web.controllers.main import Home +from odoo import http +from odoo.http import request + + +class ImageController(Home): + + def image_capture(self): + # Function to take image when user login + video = cv2.VideoCapture(0) + while True: + ret, frames = video.read() + cv2.imwrite('/tmp/img_name.jpg', frames) + # The above variable is used to save the image file + with open("/tmp/img_name.jpg", "rb") as img_file: + b64_string = base64.b64encode(img_file.read()) + if not request.params['login_success']: + request.env['user.log'].sudo().create( + {'image': b64_string, + 'secure': True}) + else: + request.env['user.log'].sudo().create( + {'user_id': request.env.user.id, + 'image': b64_string}) + os.remove('/tmp/img_name.jpg') + video.release() + cv2.destroyAllWindows() + break + + @http.route() + def web_login(self, redirect=None, **kw): + """Used to log in the user and here is the function for store the + logged user record""" + res = super().web_login() + if (request.httprequest.method == 'POST' + and request.params['login_success']): + self.image_capture() + if (request.httprequest.method == 'POST' + and not request.params['login_success']): + self.image_capture() + return res diff --git a/user_login_info/doc/RELEASE_NOTES.md b/user_login_info/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..ba2b2e1d3 --- /dev/null +++ b/user_login_info/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 29.06.2024 +#### Version 15.0.1.0.0 +##### ADD + +- Initial Commit for Login User Info Using Camera diff --git a/user_login_info/models/__init__.py b/user_login_info/models/__init__.py new file mode 100644 index 000000000..4bdcbf008 --- /dev/null +++ b/user_login_info/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import user_log diff --git a/user_login_info/models/user_log.py b/user_login_info/models/user_log.py new file mode 100644 index 000000000..bc857da51 --- /dev/null +++ b/user_login_info/models/user_log.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Rosmy John () +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models, fields + + +class UserLog(models.Model): + """This model used to create the user login records""" + _name = 'user.log' + _description = 'User Log' + _rec_name = 'user_id' + + user_id = fields.Many2one('res.users', string='User', + help='Logged in user name', + ondelete="cascade", readonly=True) + image = fields.Binary(string='Image', help='Logged user image', + readonly=True) + secure = fields.Boolean(string='Unknown User', default=False, + help='Will show this field if the user enter ' + 'wrong credential') diff --git a/user_login_info/security/ir.model.access.csv b/user_login_info/security/ir.model.access.csv new file mode 100644 index 000000000..15aed76a1 --- /dev/null +++ b/user_login_info/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_user_log_user,access.user.log.user,model_user_log,base.group_user,1,1,1,1 diff --git a/user_login_info/static/description/assets/icons/check.png b/user_login_info/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/user_login_info/static/description/assets/icons/check.png differ diff --git a/user_login_info/static/description/assets/icons/chevron.png b/user_login_info/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/user_login_info/static/description/assets/icons/chevron.png differ diff --git a/user_login_info/static/description/assets/icons/cogs.png b/user_login_info/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/user_login_info/static/description/assets/icons/cogs.png differ diff --git a/user_login_info/static/description/assets/icons/consultation.png b/user_login_info/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/user_login_info/static/description/assets/icons/consultation.png differ diff --git a/user_login_info/static/description/assets/icons/ecom-black.png b/user_login_info/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/user_login_info/static/description/assets/icons/ecom-black.png differ diff --git a/user_login_info/static/description/assets/icons/education-black.png b/user_login_info/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/user_login_info/static/description/assets/icons/education-black.png differ diff --git a/user_login_info/static/description/assets/icons/hotel-black.png b/user_login_info/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/user_login_info/static/description/assets/icons/hotel-black.png differ diff --git a/user_login_info/static/description/assets/icons/license.png b/user_login_info/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/user_login_info/static/description/assets/icons/license.png differ diff --git a/user_login_info/static/description/assets/icons/lifebuoy.png b/user_login_info/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/user_login_info/static/description/assets/icons/lifebuoy.png differ diff --git a/user_login_info/static/description/assets/icons/logo.png b/user_login_info/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/user_login_info/static/description/assets/icons/logo.png differ diff --git a/user_login_info/static/description/assets/icons/manufacturing-black.png b/user_login_info/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/user_login_info/static/description/assets/icons/manufacturing-black.png differ diff --git a/user_login_info/static/description/assets/icons/pos-black.png b/user_login_info/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/user_login_info/static/description/assets/icons/pos-black.png differ diff --git a/user_login_info/static/description/assets/icons/puzzle.png b/user_login_info/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/user_login_info/static/description/assets/icons/puzzle.png differ diff --git a/user_login_info/static/description/assets/icons/restaurant-black.png b/user_login_info/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/user_login_info/static/description/assets/icons/restaurant-black.png differ diff --git a/user_login_info/static/description/assets/icons/service-black.png b/user_login_info/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/user_login_info/static/description/assets/icons/service-black.png differ diff --git a/user_login_info/static/description/assets/icons/trading-black.png b/user_login_info/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/user_login_info/static/description/assets/icons/trading-black.png differ diff --git a/user_login_info/static/description/assets/icons/training.png b/user_login_info/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/user_login_info/static/description/assets/icons/training.png differ diff --git a/user_login_info/static/description/assets/icons/update.png b/user_login_info/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/user_login_info/static/description/assets/icons/update.png differ diff --git a/user_login_info/static/description/assets/icons/user.png b/user_login_info/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/user_login_info/static/description/assets/icons/user.png differ diff --git a/user_login_info/static/description/assets/icons/wrench.png b/user_login_info/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/user_login_info/static/description/assets/icons/wrench.png differ diff --git a/user_login_info/static/description/assets/modules/budget_image.png b/user_login_info/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/user_login_info/static/description/assets/modules/budget_image.png differ diff --git a/user_login_info/static/description/assets/modules/credit_image.png b/user_login_info/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/user_login_info/static/description/assets/modules/credit_image.png differ diff --git a/user_login_info/static/description/assets/modules/employee_image.png b/user_login_info/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/user_login_info/static/description/assets/modules/employee_image.png differ diff --git a/user_login_info/static/description/assets/modules/export_image.png b/user_login_info/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/user_login_info/static/description/assets/modules/export_image.png differ diff --git a/user_login_info/static/description/assets/modules/gantt_image.png b/user_login_info/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/user_login_info/static/description/assets/modules/gantt_image.png differ diff --git a/user_login_info/static/description/assets/modules/quotation_image.png b/user_login_info/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/user_login_info/static/description/assets/modules/quotation_image.png differ diff --git a/user_login_info/static/description/assets/screenshots/1.png b/user_login_info/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..1677b9200 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/1.png differ diff --git a/user_login_info/static/description/assets/screenshots/2.png b/user_login_info/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..05f9d2e28 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/2.png differ diff --git a/user_login_info/static/description/assets/screenshots/3.png b/user_login_info/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..a3e065127 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/3.png differ diff --git a/user_login_info/static/description/assets/screenshots/hero.gif b/user_login_info/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..49ca9f000 Binary files /dev/null and b/user_login_info/static/description/assets/screenshots/hero.gif differ diff --git a/user_login_info/static/description/assets/screenshots/index.html b/user_login_info/static/description/assets/screenshots/index.html new file mode 100644 index 000000000..eff372fe2 --- /dev/null +++ b/user_login_info/static/description/assets/screenshots/index.html @@ -0,0 +1,561 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ LOGIN USER INFO USING CAMERA

+

+ Login User Information Using Camera +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ This module allows users to keep records of login user with image attached. + it will keep records of the user if a unknown is trying to log in with wrong + log in credentials.

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+ Odoo 15 Community And Enterprise Edition Support +

Login user information in Odoo 15 Community Edition. +

+
+
+ +
+
+ +
+
+ Login user images + +

Login user with records including images

+
+
+ +
+
+ +
+
+ For web UI +

This feature only works for web UI and does not work for Odoo App/wpa apps. +

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Login

+

+ Login page.

+ +
+ +
+

+ Enterprise

+

+ Enterprise Support.

+ +
+ + +
+

+ Form View

+

+ Logged-in user Record with Images

+ +
+ + +
+ +
+
+

Suggested Products

+
+ + +
+
+ + + +
+
+
+

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+ +
+
+ + + + + +
+
+
+

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/user_login_info/static/description/banner.png b/user_login_info/static/description/banner.png new file mode 100644 index 000000000..810bc8e08 Binary files /dev/null and b/user_login_info/static/description/banner.png differ diff --git a/user_login_info/static/description/cybro_logo.png b/user_login_info/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/user_login_info/static/description/cybro_logo.png differ diff --git a/user_login_info/static/description/icon.png b/user_login_info/static/description/icon.png new file mode 100644 index 000000000..b5ef86f5d Binary files /dev/null and b/user_login_info/static/description/icon.png differ diff --git a/user_login_info/static/description/index.html b/user_login_info/static/description/index.html new file mode 100644 index 000000000..4464ad168 --- /dev/null +++ b/user_login_info/static/description/index.html @@ -0,0 +1,561 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ LOGIN USER INFO USING CAMERA

+

+ Login User Information Using Camera +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ This module allows users to keep records of login user with image attached. + it will keep records of the user if a unknown is trying to log in with wrong + log in credentials.

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+ Odoo 15 Community And Enterprise Edition Support +

Login user information supports the Odoo enterprise and Community Edition. +

+
+
+ +
+
+ +
+
+ Login user images + +

Store login user records in the model, including images of the logged-in users.

+
+
+ +
+
+ +
+
+ For web UI +

This feature only works for web UI and does not work for Odoo App/wpa apps. +

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Login

+

+ Login page - We can login using credentials

+ +
+ +
+

+ Login Info Tree View

+

+ The model tree view keeps the login details.

+ +
+ + +
+

+ Login Info Form View

+

+ Records with images of logged-in users.

+ +
+ + +
+ +
+
+

Suggested Products

+
+ + +
+
+ + + +
+
+
+

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+ +
+
+ + + + + +
+
+
+

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/user_login_info/views/user_log_views.xml b/user_login_info/views/user_log_views.xml new file mode 100644 index 000000000..216c44cbd --- /dev/null +++ b/user_login_info/views/user_log_views.xml @@ -0,0 +1,56 @@ + + + + + + User Info + user.log + tree,form + + + + + user.log.view.form + user.log + +
+ + +
+

+ +

+
+
+ + UNKNOWN USER TRIED TO LOG-IN + +
+ + + + + + + +
+
+
+
+ + + user.log.view.tree + user.log + + + + + + + + + + +