diff --git a/login_info/README.rst b/login_info/README.rst deleted file mode 100644 index d779cdd58..000000000 --- a/login_info/README.rst +++ /dev/null @@ -1,46 +0,0 @@ -.. 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 16 community 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: (V16) Vishnu kp, 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/login_info/__init__.py b/login_info/__init__.py deleted file mode 100644 index c0e083f0d..000000000 --- a/login_info/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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/login_info/__manifest__.py b/login_info/__manifest__.py deleted file mode 100644 index 0f71fa230..000000000 --- a/login_info/__manifest__.py +++ /dev/null @@ -1,48 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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': '16.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.jpg'], - 'installable': True, - 'auto_install': False, - 'application': True -} diff --git a/login_info/controller/__init__.py b/login_info/controller/__init__.py deleted file mode 100644 index 34f789897..000000000 --- a/login_info/controller/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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/login_info/controller/login_info.py b/login_info/controller/login_info.py deleted file mode 100644 index c32bced3e..000000000 --- a/login_info/controller/login_info.py +++ /dev/null @@ -1,65 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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.home 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/login_info/doc/RELEASE_NOTES.md b/login_info/doc/RELEASE_NOTES.md deleted file mode 100644 index 393eb892d..000000000 --- a/login_info/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,7 +0,0 @@ -## Module - -#### 03.01.2024 -#### Version 16.0.1.0.0 -##### ADD - -- Initial Commit for Login User Info Using Camera diff --git a/login_info/models/__init__.py b/login_info/models/__init__.py deleted file mode 100644 index 02fd98d0d..000000000 --- a/login_info/models/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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/login_info/models/user_log.py b/login_info/models/user_log.py deleted file mode 100644 index 92e87649a..000000000 --- a/login_info/models/user_log.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################# -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Vishnu KP () -# -# 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/login_info/security/ir.model.access.csv b/login_info/security/ir.model.access.csv deleted file mode 100644 index 15aed76a1..000000000 --- a/login_info/security/ir.model.access.csv +++ /dev/null @@ -1,2 +0,0 @@ -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/login_info/static/description/assets/icons/check.png b/login_info/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/login_info/static/description/assets/icons/check.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/chevron.png b/login_info/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/login_info/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/cogs.png b/login_info/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/login_info/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/consultation.png b/login_info/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/login_info/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/ecom-black.png b/login_info/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/login_info/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/education-black.png b/login_info/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/login_info/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/hotel-black.png b/login_info/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/login_info/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/license.png b/login_info/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/login_info/static/description/assets/icons/license.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/lifebuoy.png b/login_info/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/login_info/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/manufacturing-black.png b/login_info/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/login_info/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/pos-black.png b/login_info/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/login_info/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/puzzle.png b/login_info/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/login_info/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/restaurant-black.png b/login_info/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/login_info/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/service-black.png b/login_info/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/login_info/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/trading-black.png b/login_info/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/login_info/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/training.png b/login_info/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/login_info/static/description/assets/icons/training.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/update.png b/login_info/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/login_info/static/description/assets/icons/update.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/user.png b/login_info/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/login_info/static/description/assets/icons/user.png and /dev/null differ diff --git a/login_info/static/description/assets/icons/wrench.png b/login_info/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/login_info/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/categories.png b/login_info/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/login_info/static/description/assets/misc/categories.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/check-box.png b/login_info/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/login_info/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/compass.png b/login_info/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/login_info/static/description/assets/misc/compass.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/corporate.png b/login_info/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/login_info/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/customer-support.png b/login_info/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/login_info/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/cybrosys-logo.png b/login_info/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/login_info/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/features.png b/login_info/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/login_info/static/description/assets/misc/features.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/logo.png b/login_info/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/login_info/static/description/assets/misc/logo.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/pictures.png b/login_info/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/login_info/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/pie-chart.png b/login_info/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/login_info/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/right-arrow.png b/login_info/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/login_info/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/star.png b/login_info/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/login_info/static/description/assets/misc/star.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/support.png b/login_info/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/login_info/static/description/assets/misc/support.png and /dev/null differ diff --git a/login_info/static/description/assets/misc/whatsapp.png b/login_info/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/login_info/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/1.png b/login_info/static/description/assets/modules/1.png deleted file mode 100644 index 3415917c2..000000000 Binary files a/login_info/static/description/assets/modules/1.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/2.png b/login_info/static/description/assets/modules/2.png deleted file mode 100644 index 31ed46762..000000000 Binary files a/login_info/static/description/assets/modules/2.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/3.png b/login_info/static/description/assets/modules/3.png deleted file mode 100644 index 25ed3e0b6..000000000 Binary files a/login_info/static/description/assets/modules/3.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/4.png b/login_info/static/description/assets/modules/4.png deleted file mode 100644 index 359d3e4d6..000000000 Binary files a/login_info/static/description/assets/modules/4.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/5.png b/login_info/static/description/assets/modules/5.png deleted file mode 100644 index 3add135c3..000000000 Binary files a/login_info/static/description/assets/modules/5.png and /dev/null differ diff --git a/login_info/static/description/assets/modules/6.png b/login_info/static/description/assets/modules/6.png deleted file mode 100644 index be454ea44..000000000 Binary files a/login_info/static/description/assets/modules/6.png and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/entr_sprt.jpg b/login_info/static/description/assets/screenshots/entr_sprt.jpg deleted file mode 100644 index e79b634c1..000000000 Binary files a/login_info/static/description/assets/screenshots/entr_sprt.jpg and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/form_view.png b/login_info/static/description/assets/screenshots/form_view.png deleted file mode 100644 index a3e065127..000000000 Binary files a/login_info/static/description/assets/screenshots/form_view.png and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/hero.gif b/login_info/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 6aa022165..000000000 Binary files a/login_info/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/img2.jpg b/login_info/static/description/assets/screenshots/img2.jpg deleted file mode 100644 index a1bd10724..000000000 Binary files a/login_info/static/description/assets/screenshots/img2.jpg and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/list_view.png b/login_info/static/description/assets/screenshots/list_view.png deleted file mode 100644 index 7079caf96..000000000 Binary files a/login_info/static/description/assets/screenshots/list_view.png and /dev/null differ diff --git a/login_info/static/description/assets/screenshots/wrong_log_in.png b/login_info/static/description/assets/screenshots/wrong_log_in.png deleted file mode 100644 index d72db5117..000000000 Binary files a/login_info/static/description/assets/screenshots/wrong_log_in.png and /dev/null differ diff --git a/login_info/static/description/banner.jpg b/login_info/static/description/banner.jpg deleted file mode 100644 index 6aa9bb99f..000000000 Binary files a/login_info/static/description/banner.jpg and /dev/null differ diff --git a/login_info/static/description/cybro_logo.png b/login_info/static/description/cybro_logo.png deleted file mode 100644 index bb309114c..000000000 Binary files a/login_info/static/description/cybro_logo.png and /dev/null differ diff --git a/login_info/static/description/icon.png b/login_info/static/description/icon.png deleted file mode 100644 index a40d6a879..000000000 Binary files a/login_info/static/description/icon.png and /dev/null differ diff --git a/login_info/static/description/index.html b/login_info/static/description/index.html deleted file mode 100644 index 130215489..000000000 --- a/login_info/static/description/index.html +++ /dev/null @@ -1,541 +0,0 @@ -
- -
- -
-
- Community -
-
- Enterprise -
-
-
- - - -

LOGIN USER INFO USING CAMERA

-

Login User Information Using Camera

- - -
- - -
-
- -
-

Explore This - Module

-
- - - - -
-
- -
-

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 16 Community And Enterprise Edition Support -

Login user information in Odoo 16 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

- -
-
-
- - - -
-
-

Related Modules

-

Explore our related modules

-
-
-
- -
-
- - - - -
-
- -
-

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

-
-
-
-
- - - - -
-
- -
-

Support -

-
-
-
-
-
-
- -
-
-

Need Help?

-

Got questions or need help? Get in touch.

- -

- odoo@cybrosys.com

-
-
-
-
-
-
-
- -
-
-

WhatsApp

-

Say hi to us on WhatsApp!

- -

+91 86068 - 27707

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

- -

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