@ -0,0 +1,33 @@ |
|||
Login Styles v15 |
|||
================ |
|||
This module will helps you to customize the login layout and background. |
|||
|
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
* Developers: Neethu UM, odoo@cybrosys.com |
|||
|
|||
|
|||
Contacts |
|||
-------- |
|||
* Mail Contact : odoo@cybrosys.com |
|||
* Website : https://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. |
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from . import models |
|||
from . import controllers |
@ -0,0 +1,48 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
{ |
|||
'name': 'Customize Login Page Style', |
|||
'version': '15.0.1.0.0', |
|||
'summary': 'Customize The Login Page With Different Styles', |
|||
'description': 'Customize The Login Page With Different Styles', |
|||
'category': 'Extra Tools', |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': 'https://www.cybrosys.com', |
|||
'license': 'LGPL-3', |
|||
'depends': [ |
|||
'base', |
|||
'base_setup', |
|||
'web', |
|||
], |
|||
'data': [ |
|||
'views/res_config_settings_views.xml', |
|||
'views/webclient_templates_right.xml', |
|||
'views/webclient_templates_left.xml', |
|||
'views/webclient_templates_middle.xml', |
|||
], |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from . import main |
@ -0,0 +1,132 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
import json |
|||
|
|||
import werkzeug |
|||
import hashlib |
|||
from odoo.tools import pycompat |
|||
|
|||
from odoo import http |
|||
from odoo.http import request |
|||
import odoo |
|||
from werkzeug.urls import url_encode, iri_to_uri |
|||
from odoo.tools.translate import _ |
|||
from odoo.addons.web.controllers import main |
|||
|
|||
|
|||
# Shared parameters for all login/signup flows |
|||
SIGN_UP_REQUEST_PARAMS = {'db', 'login', 'debug', 'token', 'message', 'error', 'scope', 'mode', |
|||
'redirect', 'redirect_hostname', 'email', 'name', 'partner_id', |
|||
'password', 'confirm_password', 'city', 'country_id', 'lang'} |
|||
|
|||
|
|||
class Home(main.Home): |
|||
|
|||
@http.route('/web/login', type='http', auth="none") |
|||
def web_login(self, redirect=None, **kw): |
|||
main.ensure_db() |
|||
request.params['login_success'] = False |
|||
if request.httprequest.method == 'GET' and redirect and request.session.uid: |
|||
return request.redirect(redirect) |
|||
|
|||
if not request.uid: |
|||
request.uid = odoo.SUPERUSER_ID |
|||
|
|||
values = {k: v for k, v in request.params.items() if k in SIGN_UP_REQUEST_PARAMS} |
|||
try: |
|||
values['databases'] = http.db_list() |
|||
except odoo.exceptions.AccessDenied: |
|||
values['databases'] = None |
|||
|
|||
if request.httprequest.method == 'POST': |
|||
old_uid = request.uid |
|||
try: |
|||
uid = request.session.authenticate(request.session.db, request.params['login'], |
|||
request.params['password']) |
|||
request.params['login_success'] = True |
|||
return request.redirect(self._login_redirect(uid, redirect=redirect)) |
|||
except odoo.exceptions.AccessDenied as e: |
|||
request.uid = old_uid |
|||
if e.args == odoo.exceptions.AccessDenied().args: |
|||
values['error'] = _("Wrong login/password") |
|||
else: |
|||
values['error'] = e.args[0] |
|||
else: |
|||
if 'error' in request.params and request.params.get('error') == 'access': |
|||
values['error'] = _('Only employees can access this database. Please contact the administrator.') |
|||
|
|||
if 'login' not in values and request.session.get('auth_login'): |
|||
values['login'] = request.session.get('auth_login') |
|||
|
|||
if not odoo.tools.config['list_db']: |
|||
values['disable_database_manager'] = True |
|||
conf_param = request.env['ir.config_parameter'].sudo() |
|||
orientation = conf_param.get_param('web_login_styles.orientation') |
|||
image = conf_param.get_param('web_login_styles.image') |
|||
url = conf_param.get_param('web_login_styles.url') |
|||
|
|||
background_type = conf_param.get_param('web_login_styles.background') |
|||
|
|||
if background_type == 'color': |
|||
values['bg'] = '' |
|||
values['color'] = conf_param.get_param('web_login_styles.color') |
|||
elif background_type == 'image': |
|||
exist_rec = request.env['ir.attachment'].search([('is_background', '=', True)]) |
|||
if exist_rec: |
|||
exist_rec.unlink() |
|||
attachments = request.env['ir.attachment'].create({ |
|||
'name': 'Background Image', |
|||
'datas': image, |
|||
'type': 'binary', |
|||
'mimetype': 'image/png', |
|||
'public': True, |
|||
'is_background': True |
|||
}) |
|||
base_url = conf_param.get_param('web.base.url') |
|||
url = base_url + '/web/image?' + 'model=ir.attachment&id=' + str(attachments.id) + '&field=datas' |
|||
values['bg_img'] = url or '' |
|||
elif background_type == 'url': |
|||
pre_exist = request.env['ir.attachment'].search([('url', '=', url)]) |
|||
if not pre_exist: |
|||
attachments = request.env['ir.attachment'].create({ |
|||
'name': 'Background Image URL', |
|||
'url': url, |
|||
'type': 'url', |
|||
'public': True |
|||
}) |
|||
else: |
|||
attachments = pre_exist |
|||
encode = hashlib.md5(pycompat.to_text(attachments.url).encode("utf-8")).hexdigest()[0:7] |
|||
encode_url = "/web/image/{}-{}".format(attachments.id, encode) |
|||
values['bg_img'] = encode_url or '' |
|||
|
|||
if orientation == 'right': |
|||
response = request.render('web_login_styles.login_template_right', values) |
|||
elif orientation == 'left': |
|||
response = request.render('web_login_styles.login_template_left', values) |
|||
elif orientation == 'middle': |
|||
response = request.render('web_login_styles.login_template_middle', values) |
|||
else: |
|||
response = request.render('web.login', values) |
|||
response.headers['X-Frame-Options'] = 'DENY' |
|||
return response |
@ -0,0 +1,10 @@ |
|||
## Module <web_login_styles> |
|||
|
|||
#### 28.09.2022 |
|||
#### Version 15.0.1.0.0 |
|||
#### ADD |
|||
Initial Commit for Login Styles. |
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from . import res_config_settings |
|||
from . import ir_attachment |
|||
|
@ -0,0 +1,7 @@ |
|||
from odoo import models, fields, api |
|||
|
|||
|
|||
class AttachmentFile(models.Model): |
|||
_inherit = 'ir.attachment' |
|||
|
|||
is_background = fields.Boolean(string="Is Background", default=False) |
@ -0,0 +1,66 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################# |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################# |
|||
|
|||
from odoo import fields, models, api |
|||
|
|||
|
|||
class ResConfigSettings(models.TransientModel): |
|||
_inherit = 'res.config.settings' |
|||
|
|||
orientation = fields.Selection([('default', 'Default'), ('left', 'Left'), ('middle', 'Middle'), ('right', 'Right')], string="Orientation") |
|||
background = fields.Selection([('color', 'Color Picker'), ('image', 'Image'), ('url', 'URL')], string="Background") |
|||
image = fields.Binary(string="Image") |
|||
url = fields.Char(string="URL") |
|||
color = fields.Char(string="Color") |
|||
|
|||
@api.model |
|||
def get_values(self): |
|||
res = super(ResConfigSettings, self).get_values() |
|||
params = self.env['ir.config_parameter'].sudo() |
|||
res.update( |
|||
background=params.get_param('web_login_styles.background'), |
|||
orientation=params.get_param('web_login_styles.orientation'), |
|||
image=params.get_param('web_login_styles.image'), |
|||
url=params.get_param('web_login_styles.url'), |
|||
color=params.get_param('web_login_styles.color'), |
|||
) |
|||
|
|||
return res |
|||
|
|||
def set_values(self): |
|||
super(ResConfigSettings, self).set_values() |
|||
params = self.env['ir.config_parameter'].sudo() |
|||
set_orientation = self.orientation or False |
|||
set_image = self.image or False |
|||
set_url = self.url or False |
|||
set_color = self.color or False |
|||
set_background = self.background or False |
|||
params.set_param('web_login_styles.background', set_background) |
|||
params.set_param('web_login_styles.orientation', set_orientation) |
|||
params.set_param('web_login_styles.image', set_image) |
|||
params.set_param('web_login_styles.url', set_url) |
|||
params.set_param('web_login_styles.color', set_color) |
|||
|
|||
@api.onchange('orientation') |
|||
def onchange_orientation(self): |
|||
if self.orientation == 'default': |
|||
self.background = False |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 58 KiB |
After Width: | Height: | Size: 1022 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 782 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 345 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,635 @@ |
|||
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" style="border-bottom: 1px solid #d5d5d5;"> |
|||
<div class="my-3"> |
|||
<img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;"> |
|||
</div> |
|||
<div class="my-3 d-flex align-items-center"> |
|||
<div |
|||
style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;"> |
|||
<i class="fa fa-check mr-1"></i>Community |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="container" style="padding: 0rem 1.5rem 4rem !important"> |
|||
<div class="row" style="height: 900px !important;"> |
|||
<div class="col-sm-12 col-md-12 col-lg-12" |
|||
style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;"> |
|||
<h1 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important; font-size: 3.5rem !important; text-align: center !important;"> |
|||
Login Styles</h1> |
|||
<p |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important; font-size: 1.4rem !important; text-align: center !important;"> |
|||
A Module For customizing the login page |
|||
</p> |
|||
<img src="./assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="row"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-compass mr-2"></i>Explore this module |
|||
</h2> |
|||
<div class="row"> |
|||
<div class="col-md-6"> |
|||
<a href="#overview" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Overview</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
Learn more about this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#features" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Features</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
View features of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-md-6"> |
|||
<a href="#screenshots" style="text-decoration: none !important;"> |
|||
<div class="row" |
|||
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;"> |
|||
<div class="col-8"> |
|||
<h3 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;"> |
|||
Screenshots</h3> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;"> |
|||
See key screenshots of this module</p> |
|||
</div> |
|||
<div class="col-4 text-right d-flex justify-content-end align-items-center"> |
|||
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i> |
|||
</div> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<div class="row" id="overview"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-pie-chart mr-2"></i>Overview |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-mg-12 pl-3"> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;"> |
|||
In the Login Styles App, We can configure the login page according to our needs. |
|||
For this a new option is added in the general settings and based on that we can change the alignment of login to the left, right, middle or default. |
|||
Also, there is an option to change the background of login page as image, url or color.</p> |
|||
</div> |
|||
</p> |
|||
|
|||
</div> |
|||
|
|||
|
|||
<div class="row" id="features"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-star mr-2"></i>Features |
|||
</h2> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Change the alignment of the login to right, left, middle or default</h4> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Set up background with color, image, or url of the images</h4> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-md-6 pl-3 py-3 d-flex"> |
|||
<div> |
|||
<img src="assets/icons/check.png"> |
|||
</div> |
|||
<div> |
|||
<h4 |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Can keep the login page as default if there's no need of any customizations</h4> |
|||
</div> |
|||
</div> |
|||
|
|||
|
|||
</div> |
|||
|
|||
<div class="row" id="screenshots"> |
|||
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important"> |
|||
<h2 |
|||
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;"> |
|||
<i class="fa fa-image mr-2"></i>Screenshots |
|||
</h2> |
|||
</div> |
|||
<div class="col-lg-12 my-2"> |
|||
<h4 class="mt-2" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Login Page Set-Up</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
From the general settings one can find the login page set up to configure the login option. The alignments can be set to right, left, middle or as default.</p> |
|||
<img src="assets/screenshots/image_1.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Alignment of the Login</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Login Layout set to default |
|||
</p> |
|||
<img src="assets/screenshots/image_2.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Login Layout set to Left |
|||
</p> |
|||
<img src="assets/screenshots/image_3.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Login Layout set to Middle(it can include the changes in background) |
|||
</p> |
|||
<img src="assets/screenshots/image_4.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /><p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Login Layout set to Right |
|||
</p> |
|||
<img src="assets/screenshots/image_5.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Background Styles</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
There are 3 types of background setup. They are color picker, image, URL |
|||
</p> |
|||
<img src="assets/screenshots/image_6.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Set a colour for the background</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Using Color picker we can select the color as we need to set up as the background of login page |
|||
</p> |
|||
<img src="assets/screenshots/image_7.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
After selecting the color the login page automatically set up its background to the color we selected |
|||
</p> |
|||
<img src="assets/screenshots/image_8.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Set a background Image</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Using Image option we can select the background image from our system. |
|||
</p> |
|||
<img src="assets/screenshots/image_9.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Then the selected image will be set as the background image of the login layout |
|||
</p> |
|||
<img src="assets/screenshots/image_10.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
<div class="col-lg-12 my-3"> |
|||
<h4 class="mt-3" |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;"> |
|||
Set a background Image as url in the set up</h4> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Using the 'URL' option we can set the background image from the mentioned url of the image. |
|||
</p> |
|||
<img src="assets/screenshots/image_11.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
<p |
|||
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;"> |
|||
Then the image from the url will be set as the background image of the login layout |
|||
</p> |
|||
<img src="assets/screenshots/image_12.png" class="img-responsive img-thumbnail border" width="100%" |
|||
height="auto" /> |
|||
</div> |
|||
|
|||
</div> |
|||
<!-- SUGGESTED PRODUCTS --> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center" |
|||
style="text-align: center; padding: 2.5rem 1rem !important;"> |
|||
<h2 style="color: #212529 !important;">Suggested Products</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
|
|||
<div id="demo1" class="row carousel slide" data-ride="carousel"> |
|||
<!-- The slideshow --> |
|||
<div class="carousel-inner"> |
|||
<div class="carousel-item active" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/export_stockinfo_xls/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/export_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/custom_gantt_view/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/gantt_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/sales_credit_limit/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/credit_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
<div class="carousel-item" style="min-height:0px"> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/base_account_budget/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/budget_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/product_to_quotation/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/quotation_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left"> |
|||
<a href="https://apps.odoo.com/apps/modules/15.0/employee_documents_expiry/" target="_blank"> |
|||
<div style="border-radius:10px"> |
|||
<img class="img img-responsive center-block" |
|||
style="border-top-left-radius:10px; border-top-right-radius:10px" |
|||
src="./assets/modules/employee_image.png"> |
|||
</div> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- Left and right controls --> |
|||
<a class="carousel-control-prev" href="#demo1" data-slide="prev" style="left:-25px;width: 35px;color: #000;"> |
|||
<span class="carousel-control-prev-icon"><i class="fa fa-chevron-left" style="font-size:24px"></i></span> </a> |
|||
<a class="carousel-control-next" href="#demo1" data-slide="next" style="right:-25px;width: 35px;color: #000;"> |
|||
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" style="font-size:24px"></i></span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<!-- END OF SUGGESTED PRODUCTS --> |
|||
|
|||
<!-- OUR SERVICES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Services</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/cogs.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Customization</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/wrench.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/lifebuoy.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Support</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/user.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Hire |
|||
Odoo |
|||
Developer</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/puzzle.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Integration</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/update.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Migration</h6> |
|||
</div> |
|||
|
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/consultation.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Consultancy</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/training.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Implementation</h6> |
|||
</div> |
|||
|
|||
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4"> |
|||
<div class="d-flex justify-content-center align-items-center mx-3 my-3" |
|||
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;"> |
|||
<img src="assets/icons/license.png" class="img-responsive" height="48px" width="48px"> |
|||
</div> |
|||
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;"> |
|||
Odoo |
|||
Licensing Consultancy</h6> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF END OF OUR SERVICES --> |
|||
|
|||
<!-- OUR INDUSTRIES --> |
|||
<section class="container" style="margin-top: 6rem !important;"> |
|||
<div class="row"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Our Industries</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/trading-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Trading |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easily procure |
|||
and |
|||
sell your products</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/pos-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
POS |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Easy |
|||
configuration |
|||
and convivial experience</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/education-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Education |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
A platform for |
|||
educational management</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/manufacturing-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Manufacturing |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Plan, track and |
|||
schedule your operations</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/ecom-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
E-commerce & Website |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Mobile |
|||
friendly, |
|||
awe-inspiring product pages</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/service-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Service Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Keep track of |
|||
services and invoice</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/restaurant-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Restaurant |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
Run your bar or |
|||
restaurant methodically</p> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="col-lg-3"> |
|||
<div class="my-4 d-flex flex-column justify-content-center" |
|||
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;"> |
|||
<img src="./assets/icons/hotel-black.png" class="img-responsive mb-3" height="48px" width="48px"> |
|||
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;"> |
|||
Hotel Management |
|||
</h5> |
|||
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;"> |
|||
An |
|||
all-inclusive |
|||
hotel management application</p> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</section> |
|||
|
|||
<!-- END OF END OF OUR INDUSTRIES --> |
|||
|
|||
<!-- FOOTER --> |
|||
<!-- Footer Section --> |
|||
<section class="container" style="margin: 5rem auto 2rem;"> |
|||
<div class="row" style="max-width:1540px;"> |
|||
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center"> |
|||
<h2 style="color: #212529 !important;">Need Help?</h2> |
|||
<hr |
|||
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" /> |
|||
</div> |
|||
</div> |
|||
|
|||
<!-- Contact Cards --> |
|||
<div class="row d-flex justify-content-center align-items-center" |
|||
style="max-width:1540px; margin: 0 auto 2rem auto;"> |
|||
|
|||
<div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; "> |
|||
|
|||
<div class="row mt-4"> |
|||
<div class="col-lg-6"> |
|||
<a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a> |
|||
</div> |
|||
<div class="col-lg-6"> |
|||
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank" |
|||
class="btn btn-block mb-2 deep_hover" |
|||
style="text-decoration: none; background-color: #25D366; color: #FFF; border-radius: 4px;"><i |
|||
class="fa fa-whatsapp mr-2"></i>+91 86068 27707</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
<!-- End of Contact Cards --> |
|||
</section> |
|||
<!-- Footer --> |
|||
<section class="oe_container" style="padding: 2rem 3rem 1rem;"> |
|||
<div class="row" style="max-width:1540px; margin: 0 auto; margin-right: 3rem; "> |
|||
<!-- Logo --> |
|||
<div class="col-lg-12 d-flex justify-content-center align-items-center" style="margin-top: 3rem;"> |
|||
<img src="https://www.cybrosys.com/images/logo.png" width="200px" height="auto" /> |
|||
</div> |
|||
<!-- End of Logo --> |
|||
<div class="col-lg-12"> |
|||
<hr |
|||
style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;"> |
|||
<!-- End of Footer Section --> |
|||
</div> |
|||
</div> |
|||
</section> |
|||
<!-- END OF FOOTER --> |
|||
|
|||
</div> |
@ -0,0 +1,43 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<data> |
|||
|
|||
<record id="res_config_settings_form_inherit" model="ir.ui.view"> |
|||
<field name="name">res.config.settings.form</field> |
|||
<field name="model">res.config.settings</field> |
|||
<field name="inherit_id" ref="base_setup.res_config_settings_view_form"/> |
|||
<field name="priority" eval="8"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//div[@id='languages']" position="after"> |
|||
<div class="web_login_setting_block" data-string="Login Settings" string="Login Settings" data-key="login_settings"> |
|||
<div id="web_login_custom"> |
|||
<h2>Login Page Set-Up</h2> |
|||
<div class='row mt16 o_settings_container' name="web_login_setup_container"> |
|||
<div class='col-xs-12 col-md-6 o_setting_box' id="web_login_setup_setting"> |
|||
<div class='o_setting_left_pane'/> |
|||
<div class='o_setting_right_pane'> |
|||
<div class="content-group"> |
|||
<div class="row mt16"> |
|||
<label string="Orientation" for="orientation" class="col-lg-3 o_light_label"/> |
|||
<field name="orientation"/> |
|||
|
|||
<label string="Background" for="background" class="col-lg-3 o_light_label" attrs="{'invisible': [('orientation', 'in', ['default', False])]}"/> |
|||
<field name="background" attrs="{'invisible': [('orientation', 'in', ['default', False])]}"/> |
|||
<label string="Image" for="image" class="col-lg-3 o_light_label" attrs="{'invisible': [('background', 'in', ['url', 'color', False])]}"/> |
|||
<field name="image" attrs="{'invisible': [('background', 'in', ['url', 'color', False])]}"/> |
|||
<label string="URL" for="url" class="col-lg-3 o_light_label" attrs="{'invisible': [('background', 'in', ['image', 'color', False])]}"/> |
|||
<field name="url" attrs="{'invisible': [('background', 'in', ['image', 'color', False])]}"/> |
|||
<label string="Color" for="color" class="col-lg-3 o_light_label" attrs="{'invisible': [('background', 'in', ['url', 'image', False])]}"/> |
|||
<field name="color" widget="color" attrs="{'invisible': [('background', 'in', ['url', 'image', False])]}"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
</data> |
|||
</odoo> |
@ -0,0 +1,98 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<template id="login_layout_left" name="Login Layout"> |
|||
<t t-call="web.frontend_layout"> |
|||
<t t-set="html_data" t-value="{'style': 'height: 100%;'}"/> |
|||
<t t-set="body_classname" t-value="'bg-100'"/> |
|||
<t t-set="no_header" t-value="True"/> |
|||
<t t-set="no_footer" t-value="True"/> |
|||
<div class="background" |
|||
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;"> |
|||
<div class="container body_layout" style="height: 100%;"> |
|||
<div class="container py-5"> |
|||
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list" |
|||
style="max-width: 300px; float: left;"> |
|||
<div class="card-body"> |
|||
<div t-attf-class="text-center pb-3 border-bottom {{'mb-3' if form_small else 'mb-4'}}"> |
|||
<img t-attf-src="/web/binary/company_logo{{ '?dbname='+db if db else '' }}" |
|||
alt="Logo" style="max-height:120px; max-width: 100%; width:auto"/> |
|||
</div> |
|||
<t t-out="0"/> |
|||
<div class="text-center small mt-4 pt-3 border-top" t-if="not disable_footer"> |
|||
<t t-if="not disable_database_manager"> |
|||
<a class="border-right pr-2 mr-1" href="/web/database/manager">Manage |
|||
Databases |
|||
</a> |
|||
</t> |
|||
<a href="https://www.odoo.com?utm_source=db&utm_medium=auth" target="_blank"> |
|||
Powered by |
|||
<span>Odoo</span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</t> |
|||
</template> |
|||
|
|||
<template id="web_login_styles.login_template_left" name="Login"> |
|||
<t t-call="web_login_styles.login_layout_left"> |
|||
<form class="oe_login_form" role="form" t-attf-action="/web/login" method="post" |
|||
onsubmit="this.action = '/web/login' + location.hash"> |
|||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> |
|||
|
|||
<div class="form-group field-db" t-if="databases and len(databases) > 1"> |
|||
<label for="db" class="col-form-label">Database</label> |
|||
<div t-attf-class="input-group {{'input-group-sm' if form_small else ''}}"> |
|||
<input type="text" name="db" t-att-value="request.db" id="db" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" |
|||
required="required" readonly="readonly"/> |
|||
<span class="input-group-append"> |
|||
<a role="button" href="/web/database/selector" class="btn btn-secondary">Select |
|||
<i class="fa fa-database" role="img" aria-label="Database" title="Database"></i> |
|||
</a> |
|||
</span> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="form-group field-login"> |
|||
<label for="login">Email</label> |
|||
<input type="text" placeholder="Email" name="login" t-att-value="login" id="login" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autofocus="autofocus" autocapitalize="off"/> |
|||
</div> |
|||
|
|||
<div class="form-group field-password"> |
|||
<label for="password">Password</label> |
|||
<input type="password" placeholder="Password" name="password" id="password" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autocomplete="current-password" t-att-autofocus="'autofocus' if login else None" |
|||
maxlength="4096"/> |
|||
</div> |
|||
|
|||
<p class="alert alert-danger" t-if="error" role="alert"> |
|||
<t t-esc="error"/> |
|||
</p> |
|||
<p class="alert alert-success" t-if="message" role="status"> |
|||
<t t-esc="message"/> |
|||
</p> |
|||
|
|||
<div t-attf-class="clearfix oe_login_buttons text-center mb-1 {{'pt-2' if form_small else 'pt-3'}}"> |
|||
<button type="submit" class="btn btn-primary btn-block">Log in</button> |
|||
<t t-if="debug"> |
|||
<button type="submit" name="redirect" value="/web/become" class="btn btn-link btn-sm btn-block"> |
|||
Log in as superuser |
|||
</button> |
|||
</t> |
|||
<div class="o_login_auth"/> |
|||
</div> |
|||
|
|||
<input type="hidden" name="redirect" t-att-value="redirect"/> |
|||
</form> |
|||
</t> |
|||
</template> |
|||
|
|||
</odoo> |
@ -0,0 +1,93 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<template id="login_layout_middle" name="Login Layout Middle"> |
|||
<t t-call="web.frontend_layout"> |
|||
<t t-set="html_data" t-value="{'style': 'height: 100%;'}"/> |
|||
<t t-set="body_classname" t-value="'bg-100'"/> |
|||
<t t-set="no_header" t-value="True"/> |
|||
<t t-set="no_footer" t-value="True"/> |
|||
<div class="background" |
|||
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;"> |
|||
<div class="container py-5"> |
|||
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list" |
|||
style="max-width: 300px;"> |
|||
<div class="card-body"> |
|||
<div t-attf-class="text-center pb-3 border-bottom {{'mb-3' if form_small else 'mb-4'}}"> |
|||
<img t-attf-src="/web/binary/company_logo{{ '?dbname='+db if db else '' }}" alt="Logo" |
|||
style="max-height:120px; max-width: 100%; width:auto"/> |
|||
</div> |
|||
<t t-out="0"/> |
|||
<div class="text-center small mt-4 pt-3 border-top" t-if="not disable_footer"> |
|||
<t t-if="not disable_database_manager"> |
|||
<a class="border-right pr-2 mr-1" href="/web/database/manager">Manage Databases</a> |
|||
</t> |
|||
<a href="https://www.odoo.com?utm_source=db&utm_medium=auth" target="_blank">Powered |
|||
by |
|||
<span>Odoo</span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</t> |
|||
</template> |
|||
<template id="web_login_styles.login_template_middle" name="Login"> |
|||
<t t-call="web_login_styles.login_layout_middle"> |
|||
<form class="oe_login_form" role="form" t-attf-action="/web/login" method="post" |
|||
onsubmit="this.action = '/web/login' + location.hash"> |
|||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> |
|||
|
|||
<div class="form-group field-db" t-if="databases and len(databases) > 1"> |
|||
<label for="db" class="col-form-label">Database</label> |
|||
<div t-attf-class="input-group {{'input-group-sm' if form_small else ''}}"> |
|||
<input type="text" name="db" t-att-value="request.db" id="db" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" |
|||
required="required" readonly="readonly"/> |
|||
<span class="input-group-append"> |
|||
<a role="button" href="/web/database/selector" class="btn btn-secondary">Select |
|||
<i class="fa fa-database" role="img" aria-label="Database" title="Database"></i> |
|||
</a> |
|||
</span> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="form-group field-login"> |
|||
<label for="login">Email</label> |
|||
<input type="text" placeholder="Email" name="login" t-att-value="login" id="login" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autofocus="autofocus" autocapitalize="off"/> |
|||
</div> |
|||
|
|||
<div class="form-group field-password"> |
|||
<label for="password">Password</label> |
|||
<input type="password" placeholder="Password" name="password" id="password" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autocomplete="current-password" t-att-autofocus="'autofocus' if login else None" |
|||
maxlength="4096"/> |
|||
</div> |
|||
|
|||
<p class="alert alert-danger" t-if="error" role="alert"> |
|||
<t t-esc="error"/> |
|||
</p> |
|||
<p class="alert alert-success" t-if="message" role="status"> |
|||
<t t-esc="message"/> |
|||
</p> |
|||
|
|||
<div t-attf-class="clearfix oe_login_buttons text-center mb-1 {{'pt-2' if form_small else 'pt-3'}}"> |
|||
<button type="submit" class="btn btn-primary btn-block">Log in</button> |
|||
<t t-if="debug"> |
|||
<button type="submit" name="redirect" value="/web/become" class="btn btn-link btn-sm btn-block"> |
|||
Log in as superuser |
|||
</button> |
|||
</t> |
|||
<div class="o_login_auth"/> |
|||
</div> |
|||
|
|||
<input type="hidden" name="redirect" t-att-value="redirect"/> |
|||
</form> |
|||
</t> |
|||
</template> |
|||
|
|||
</odoo> |
@ -0,0 +1,99 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
<template id="login_layout_right" name="Login Layout"> |
|||
<t t-call="web.frontend_layout"> |
|||
<t t-set="html_data" t-value="{'style': 'height: 100%;'}"/> |
|||
<t t-set="body_classname" t-value="'bg-100'"/> |
|||
<t t-set="no_header" t-value="True"/> |
|||
<t t-set="no_footer" t-value="True"/> |
|||
<div class="background" |
|||
t-attf-style="background-image: url('#{bg_img}'); background-color: #{color}; height: 100%;"> |
|||
<div class="container body_layout" style="height: 100%;"> |
|||
<div class="container py-5"> |
|||
<div t-attf-class="card border-0 mx-auto bg-100 {{login_card_classes}} o_database_list" |
|||
style="max-width: 300px; float: right;"> |
|||
<div class="card-body"> |
|||
<div t-attf-class="text-center pb-3 border-bottom {{'mb-3' if form_small else 'mb-4'}}"> |
|||
<img t-attf-src="/web/binary/company_logo{{ '?dbname='+db if db else '' }}" |
|||
alt="Logo" style="max-height:120px; max-width: 100%; width:auto"/> |
|||
</div> |
|||
<t t-out="0"/> |
|||
<div class="text-center small mt-4 pt-3 border-top" t-if="not disable_footer"> |
|||
<t t-if="not disable_database_manager"> |
|||
<a class="border-right pr-2 mr-1" href="/web/database/manager">Manage |
|||
Databases |
|||
</a> |
|||
</t> |
|||
<a href="https://www.odoo.com?utm_source=db&utm_medium=auth" target="_blank"> |
|||
Powered by |
|||
<span>Odoo</span> |
|||
</a> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
|
|||
</div> |
|||
</div> |
|||
</t> |
|||
</template> |
|||
|
|||
<template id="web_login_styles.login_template_right" name="Login"> |
|||
<t t-call="web_login_styles.login_layout_right"> |
|||
<form class="oe_login_form" role="form" t-attf-action="/web/login" method="post" |
|||
onsubmit="this.action = '/web/login' + location.hash"> |
|||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> |
|||
|
|||
<div class="form-group field-db" t-if="databases and len(databases) > 1"> |
|||
<label for="db" class="col-form-label">Database</label> |
|||
<div t-attf-class="input-group {{'input-group-sm' if form_small else ''}}"> |
|||
<input type="text" name="db" t-att-value="request.db" id="db" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" |
|||
required="required" readonly="readonly"/> |
|||
<span class="input-group-append"> |
|||
<a role="button" href="/web/database/selector" class="btn btn-secondary">Select |
|||
<i class="fa fa-database" role="img" aria-label="Database" title="Database"></i> |
|||
</a> |
|||
</span> |
|||
</div> |
|||
</div> |
|||
|
|||
<div class="form-group field-login"> |
|||
<label for="login">Email</label> |
|||
<input type="text" placeholder="Email" name="login" t-att-value="login" id="login" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autofocus="autofocus" autocapitalize="off"/> |
|||
</div> |
|||
|
|||
<div class="form-group field-password"> |
|||
<label for="password">Password</label> |
|||
<input type="password" placeholder="Password" name="password" id="password" |
|||
t-attf-class="form-control #{'form-control-sm' if form_small else ''}" required="required" |
|||
autocomplete="current-password" t-att-autofocus="'autofocus' if login else None" |
|||
maxlength="4096"/> |
|||
</div> |
|||
|
|||
<p class="alert alert-danger" t-if="error" role="alert"> |
|||
<t t-esc="error"/> |
|||
</p> |
|||
<p class="alert alert-success" t-if="message" role="status"> |
|||
<t t-esc="message"/> |
|||
</p> |
|||
|
|||
<div t-attf-class="clearfix oe_login_buttons text-center mb-1 {{'pt-2' if form_small else 'pt-3'}}"> |
|||
<button type="submit" class="btn btn-primary btn-block">Log in</button> |
|||
<t t-if="debug"> |
|||
<button type="submit" name="redirect" value="/web/become" class="btn btn-link btn-sm btn-block"> |
|||
Log in as superuser |
|||
</button> |
|||
</t> |
|||
<div class="o_login_auth"/> |
|||
</div> |
|||
|
|||
<input type="hidden" name="redirect" t-att-value="redirect"/> |
|||
</form> |
|||
</t> |
|||
</template> |
|||
|
|||
|
|||
</odoo> |