2015-01-22 15:56:23 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% from "security/fields.html" import render_field_with_errors %}
|
|
|
|
{% block body %}
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 11:44:55 +00:00
|
|
|
<div class="container-fluid h-100 login_page">
|
2016-06-21 13:21:06 +00:00
|
|
|
{% include "security/messages.html" %}
|
Improvement in the look and feel of the whole application
Changed the SCSS/CSS for the below third party libraries to adopt the
new look 'n' feel:
- wcDocker
- Alertify dialogs, and notifications
- AciTree
- Bootstrap Navbar
- Bootstrap Tabs
- Bootstrap Drop-Down menu
- Backgrid
- Select2
Adopated the new the look 'n' feel for the dialogs, wizard, properties,
tab panels, tabs, fieldset, subnode control, spinner control, HTML
table, and other form controls.
- Font is changed to Roboto
- Using SCSS variables to define the look 'n' feel
- Designer background images for the Login, and Forget password pages in
'web' mode
- Improved the look 'n' feel for the key selection in the preferences
dialog
- Table classes consistency changes across the application
- File Open and Save dialog list view changes
Author(s): Aditya Toshniwal & Khushboo Vashi
2018-12-21 11:44:55 +00:00
|
|
|
<div class="row h-100 align-items-center justify-content-center">
|
|
|
|
<div class="col-md-6">{% block panel_image %}{% endblock %}</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<div class="panel-header text-color h4"><i class="app-icon pg-icon"></i> {{ _('%(appname)s', appname=config.APP_NAME) }}</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="d-block text-color pb-3 h5">{% block panel_title %}{% endblock %}</div>
|
|
|
|
{% block panel_body %}
|
|
|
|
{% endblock %}
|
2016-06-21 13:21:06 +00:00
|
|
|
</div>
|
2015-01-22 15:56:23 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|