diff --git a/password_reset_manager/README.rst b/password_reset_manager/README.rst new file mode 100644 index 000000000..8c73a3989 --- /dev/null +++ b/password_reset_manager/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Password Reset Manager +====================== +Password Reset Manager module help odoo users to change their login password and help admin to change users login password without login into odoo. + +Configuration +============= +* No additional configuration required + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +======= +* Developer: (V14) Mohammed Dilshad Tk , 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/password_reset_manager/__init__.py b/password_reset_manager/__init__.py new file mode 100755 index 000000000..c4c3f8cbe --- /dev/null +++ b/password_reset_manager/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import controllers diff --git a/password_reset_manager/__manifest__.py b/password_reset_manager/__manifest__.py new file mode 100755 index 000000000..617de4e50 --- /dev/null +++ b/password_reset_manager/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Password Reset Manager", + 'version': '14.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """Change User Password and Reset Manager""", + 'description': """Password Reset Manager module help odoo users to change + their login password and help admin to change users login password without + login into odoo.""", + 'author': "Cybrosys Techno Solutions", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['auth_signup', 'web'], + 'data': [ + 'views/password_reset_manager_templates.xml', + ], + 'images': ['static/description/banner.png'], + 'license': "AGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/password_reset_manager/controllers/__init__.py b/password_reset_manager/controllers/__init__.py new file mode 100644 index 000000000..30c33d518 --- /dev/null +++ b/password_reset_manager/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import auth_signup diff --git a/password_reset_manager/controllers/auth_signup.py b/password_reset_manager/controllers/auth_signup.py new file mode 100644 index 000000000..ae78b29dc --- /dev/null +++ b/password_reset_manager/controllers/auth_signup.py @@ -0,0 +1,105 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from werkzeug.utils import redirect +import odoo +from odoo import http, _ +from odoo.http import request +from odoo.addons.auth_signup.controllers.main import AuthSignupHome +from odoo.addons.web.controllers.main import Database + + +class DataBase(Database): + """Inherits 'Database' to add functionalities of resetting password.""" + + @http.route(route='/web/reset_by_master_pass/submit', type='http', + methods=['POST'], auth="public", website=True, csrf=False) + def change_password_by_master(self, *args, **kw): + """This route is called when while confirm the "Reset password" form + and change the password using the master password.""" + values = {} + if kw['confirm_new_password'] == kw['new_password']: + if odoo.tools.config.verify_admin_password(kw['master_password']): + user_valid = (request.env['res.users'].sudo(). + search([('login', '=', kw['user_name'])])) + if user_valid: + query = (f"update res_users set password='%s' where " + "login='%s'") % ( + kw['confirm_new_password'], kw['user_name']) + request.cr.execute(query) + return redirect(f'/web/login?message=%s' % + _('Password Changed')) + else: + values['error'] = _("User Name Is Not Valid") + return request.render('password_reset_manager.' + 'forgot_password', values) + else: + values['error'] = _("Master Password Is Incorrect") + return request.render('password_reset_manager.forgot_password', + values) + else: + values['error'] = _("Password Not Matched") + return request.render('password_reset_manager.forgot_password', + values) + + +class AuthSignupHome(AuthSignupHome): + """Inherits 'AuthSignupHome' to add functions while clicking + 'Forgot Password'""" + + @http.route(route='/web/forgot_password', type='http', auth='public', + website=True, sitemap=False, csrf=False) + def forgot_password(self, *args, **kw): + """Route which called while clicking "Forgot Password" link from + login page.""" + return request.render('password_reset_manager.forgot_password', + self.get_auth_signup_qcontext()) + + @http.route(route='/web/reset_password/direct', type='http', auth='public', + website=True, sitemap=False, csrf=False) + def web_auth_reset_password_direct(self, *args, **kw): + """Route which called while clicking "Change Password" link from + login page.""" + return request.render('password_reset_manager.reset_password_direct' + , self.get_auth_signup_qcontext()) + + @http.route(route='/web/reset_password/submit', type='http', + methods=['POST'], auth="public", website=True, csrf=False) + def change_password(self, *args, **kw): + """This route is called when while confirm the "Change Password Form" + section and change password using master password.""" + values = {} + if kw['confirm_new_password'] == kw['new_password']: + try: + uid = request.session.authenticate(request.session.db, + kw['user_name'], + kw['old_password']) + user = request.env['res.users'].search([('id', '=', uid)]) + user.password = kw['confirm_new_password'] + return redirect('/web/login?message=%s' %_('Password Changed')) + except odoo.exceptions.AccessDenied: + values['error'] = _("Login or Password Is Incorrect") + return request.render('password_reset_manager.' + 'reset_password_direct', values) + else: + values['error'] = _("Password Not Match") + return request.render('password_reset_manager.reset_password_direct' + , values) diff --git a/password_reset_manager/doc/RELEASE_NOTES.md b/password_reset_manager/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..0ff911cc6 --- /dev/null +++ b/password_reset_manager/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 29.11.2023 +#### Version 14.0.1.0.0 +#### ADD + +- Initial commit for Password Reset Manager diff --git a/password_reset_manager/static/description/assets/icons/check.png b/password_reset_manager/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/check.png differ diff --git a/password_reset_manager/static/description/assets/icons/chevron.png b/password_reset_manager/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/chevron.png differ diff --git a/password_reset_manager/static/description/assets/icons/cogs.png b/password_reset_manager/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/cogs.png differ diff --git a/password_reset_manager/static/description/assets/icons/consultation.png b/password_reset_manager/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/consultation.png differ diff --git a/password_reset_manager/static/description/assets/icons/ecom-black.png b/password_reset_manager/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/ecom-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/education-black.png b/password_reset_manager/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/education-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/hotel-black.png b/password_reset_manager/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/hotel-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/license.png b/password_reset_manager/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/license.png differ diff --git a/password_reset_manager/static/description/assets/icons/lifebuoy.png b/password_reset_manager/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/lifebuoy.png differ diff --git a/password_reset_manager/static/description/assets/icons/manufacturing-black.png b/password_reset_manager/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/manufacturing-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/pos-black.png b/password_reset_manager/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/pos-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/puzzle.png b/password_reset_manager/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/puzzle.png differ diff --git a/password_reset_manager/static/description/assets/icons/restaurant-black.png b/password_reset_manager/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/restaurant-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/service-black.png b/password_reset_manager/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/service-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/trading-black.png b/password_reset_manager/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/trading-black.png differ diff --git a/password_reset_manager/static/description/assets/icons/training.png b/password_reset_manager/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/training.png differ diff --git a/password_reset_manager/static/description/assets/icons/update.png b/password_reset_manager/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/update.png differ diff --git a/password_reset_manager/static/description/assets/icons/user.png b/password_reset_manager/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/user.png differ diff --git a/password_reset_manager/static/description/assets/icons/wrench.png b/password_reset_manager/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/password_reset_manager/static/description/assets/icons/wrench.png differ diff --git a/password_reset_manager/static/description/assets/misc/categories.png b/password_reset_manager/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/categories.png differ diff --git a/password_reset_manager/static/description/assets/misc/check-box.png b/password_reset_manager/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/check-box.png differ diff --git a/password_reset_manager/static/description/assets/misc/compass.png b/password_reset_manager/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/compass.png differ diff --git a/password_reset_manager/static/description/assets/misc/corporate.png b/password_reset_manager/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/corporate.png differ diff --git a/password_reset_manager/static/description/assets/misc/customer-support.png b/password_reset_manager/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/customer-support.png differ diff --git a/password_reset_manager/static/description/assets/misc/cybrosys-logo.png b/password_reset_manager/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/cybrosys-logo.png differ diff --git a/password_reset_manager/static/description/assets/misc/features.png b/password_reset_manager/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/features.png differ diff --git a/password_reset_manager/static/description/assets/misc/logo.png b/password_reset_manager/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/logo.png differ diff --git a/password_reset_manager/static/description/assets/misc/pictures.png b/password_reset_manager/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/pictures.png differ diff --git a/password_reset_manager/static/description/assets/misc/pie-chart.png b/password_reset_manager/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/pie-chart.png differ diff --git a/password_reset_manager/static/description/assets/misc/right-arrow.png b/password_reset_manager/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/right-arrow.png differ diff --git a/password_reset_manager/static/description/assets/misc/star.png b/password_reset_manager/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/star.png differ diff --git a/password_reset_manager/static/description/assets/misc/support.png b/password_reset_manager/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/support.png differ diff --git a/password_reset_manager/static/description/assets/misc/whatsapp.png b/password_reset_manager/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/password_reset_manager/static/description/assets/misc/whatsapp.png differ diff --git a/password_reset_manager/static/description/assets/modules/approval_image.png b/password_reset_manager/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/approval_image.png differ diff --git a/password_reset_manager/static/description/assets/modules/budget_image.png b/password_reset_manager/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/budget_image.png differ diff --git a/password_reset_manager/static/description/assets/modules/export_image.png b/password_reset_manager/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/export_image.png differ diff --git a/password_reset_manager/static/description/assets/modules/magento_image.png b/password_reset_manager/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/magento_image.png differ diff --git a/password_reset_manager/static/description/assets/modules/pos_image.png b/password_reset_manager/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/pos_image.png differ diff --git a/password_reset_manager/static/description/assets/modules/shopify_image.png b/password_reset_manager/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/shopify_image.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/hero.gif b/password_reset_manager/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..6eb516536 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/hero.gif differ diff --git a/password_reset_manager/static/description/assets/screenshots/image1.png b/password_reset_manager/static/description/assets/screenshots/image1.png new file mode 100644 index 000000000..4573636f6 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/image1.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/image2.png b/password_reset_manager/static/description/assets/screenshots/image2.png new file mode 100644 index 000000000..272c0c8bd Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/image2.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/img1.png b/password_reset_manager/static/description/assets/screenshots/img1.png new file mode 100644 index 000000000..dd145d405 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/img1.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/img2.png b/password_reset_manager/static/description/assets/screenshots/img2.png new file mode 100644 index 000000000..3fd32d890 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/img2.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/img3.png b/password_reset_manager/static/description/assets/screenshots/img3.png new file mode 100644 index 000000000..6ffd93bf2 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/img3.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/img4.png b/password_reset_manager/static/description/assets/screenshots/img4.png new file mode 100644 index 000000000..75444cbb9 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/img4.png differ diff --git a/password_reset_manager/static/description/banner.png b/password_reset_manager/static/description/banner.png new file mode 100644 index 000000000..b3d5cf8bf Binary files /dev/null and b/password_reset_manager/static/description/banner.png differ diff --git a/password_reset_manager/static/description/icon.png b/password_reset_manager/static/description/icon.png new file mode 100644 index 000000000..d0d1d0c17 Binary files /dev/null and b/password_reset_manager/static/description/icon.png differ diff --git a/password_reset_manager/static/description/index.html b/password_reset_manager/static/description/index.html new file mode 100644 index 000000000..08fe0446c --- /dev/null +++ b/password_reset_manager/static/description/index.html @@ -0,0 +1,625 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ + + +
+
+
+

+ Password + Reset Manager

+

Reset User Password Using Master Password/Current Password +

+ +
+
+
+
+ +
+
+ +
+

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This odoo app help odoo users to change their login password and help + admin to change users login password + without login into odoo. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ +
+ Change login password by verifying current password without login into Odoo. +
+
+
+ +
+ Reset login password by verifying master password without login into Odoo. +
+
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Settings

+

+ Enable Password Reset + option from General Settings

+ +
+ +
+

+ Login Page

+

In Login Page, you will find options to change and reset Password.

+ +
+ +
+

+ Change Password + Form

+ +
+
+

+ Reset Password + Form

+ +
+
+

+ Raise warnings if Credentials are incorrect(on Reset + Password)

+ +
+
+

+ Warnings for incorrect Credentials(while change using Forgot + Password)

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

+ Related + 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

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

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ diff --git a/password_reset_manager/views/password_reset_manager_templates.xml b/password_reset_manager/views/password_reset_manager_templates.xml new file mode 100644 index 000000000..14a9df536 --- /dev/null +++ b/password_reset_manager/views/password_reset_manager_templates.xml @@ -0,0 +1,136 @@ + + + + + + + + +