diff --git a/password_reset_manager/README.rst b/password_reset_manager/README.rst new file mode 100644 index 000000000..d2eced630 --- /dev/null +++ b/password_reset_manager/README.rst @@ -0,0 +1,44 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-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 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +======= +* Developer: (V15) 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..806c65cae --- /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: Cybrosys Techno Solutions() +# +# 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 controllers diff --git a/password_reset_manager/__manifest__.py b/password_reset_manager/__manifest__.py new file mode 100755 index 000000000..aa69accc3 --- /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: Cybrosys Techno Solutions() +# +# 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': "Password Reset Manager", + 'version': '15.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': "LGPL-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..49e04ee9c --- /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: Cybrosys Techno Solutions() +# +# 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 password_reset_manager diff --git a/password_reset_manager/controllers/password_reset_manager.py b/password_reset_manager/controllers/password_reset_manager.py new file mode 100644 index 000000000..92223faca --- /dev/null +++ b/password_reset_manager/controllers/password_reset_manager.py @@ -0,0 +1,112 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 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): + """Database Inherit""" + + @http.route('/web/rest_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" section + and change password using 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 = ("update res_users set password='%s' where " + "login='%s'") % ( + kw['confirm_new_password'], kw['user_name']) + request.cr.execute(query) + return request.redirect('/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): + """AuthSignupHome Inherit""" + + @http.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('/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('/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" + 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 request.redirect('/web/login?message=%s' % + _('Password Changed')) + except odoo.exceptions.AccessDenied as e: + 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..d332f3874 --- /dev/null +++ b/password_reset_manager/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 29.10.2023 +#### Version 15.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/access_restriction_by_ip.png b/password_reset_manager/static/description/assets/modules/access_restriction_by_ip.png new file mode 100644 index 000000000..707e2b7ed Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/access_restriction_by_ip.png differ diff --git a/password_reset_manager/static/description/assets/modules/hide_menu_user.png b/password_reset_manager/static/description/assets/modules/hide_menu_user.png new file mode 100644 index 000000000..6bc155887 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/hide_menu_user.png differ diff --git a/password_reset_manager/static/description/assets/modules/login_user_detail.png b/password_reset_manager/static/description/assets/modules/login_user_detail.png new file mode 100644 index 000000000..4fbe85ac1 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/login_user_detail.png differ diff --git a/password_reset_manager/static/description/assets/modules/todo_list.png b/password_reset_manager/static/description/assets/modules/todo_list.png new file mode 100644 index 000000000..12bec092a Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/todo_list.png differ diff --git a/password_reset_manager/static/description/assets/modules/web_login_styles.png b/password_reset_manager/static/description/assets/modules/web_login_styles.png new file mode 100644 index 000000000..e20126a45 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/web_login_styles.png differ diff --git a/password_reset_manager/static/description/assets/modules/whatsapp_redirect.png b/password_reset_manager/static/description/assets/modules/whatsapp_redirect.png new file mode 100644 index 000000000..f5174ab22 Binary files /dev/null and b/password_reset_manager/static/description/assets/modules/whatsapp_redirect.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/1.png b/password_reset_manager/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..d0a9e0303 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/1.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/2.png b/password_reset_manager/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..01ce6fc53 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/2.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/3.png b/password_reset_manager/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..c3495da43 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/3.png differ diff --git a/password_reset_manager/static/description/assets/screenshots/4.png b/password_reset_manager/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..43c7b5a4b Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/4.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..6c929e8f0 Binary files /dev/null and b/password_reset_manager/static/description/assets/screenshots/hero.gif 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..778a206f1 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..9c798eec2 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..06ddb083b --- /dev/null +++ b/password_reset_manager/static/description/index.html @@ -0,0 +1,610 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + +
+
+
+

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 in odoo general settings

+ +
+ +
+

+ Login Page

+

+ In login page you will + get option's change and reset login password.

+ +
+ +
+

+ Change Password + Form

+ +
+
+

+ Reset Password + Form

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

+ 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..b50e9eac5 --- /dev/null +++ b/password_reset_manager/views/password_reset_manager_templates.xml @@ -0,0 +1,136 @@ + + + + + + + + +