2015-01-22 15:56:23 +00:00
|
|
|
{% extends "security/panel.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 17:14:55 +05:30
|
|
|
{% block panel_image %}
|
|
|
|
|
<div class="p-5">
|
|
|
|
|
<img src="{{ url_for('static', filename='img/forgot_password.svg') }}" alt="{{ _('Forgot Password') }}">
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
{% block panel_title %}{{ _('Recover Password', appname=config.APP_NAME) }}{% endblock %}
|
2015-01-22 15:56:23 +00:00
|
|
|
{% block panel_body %}
|
2017-12-18 09:15:36 +00:00
|
|
|
{% if config.SERVER_MODE %}
|
2015-02-25 17:06:00 +00:00
|
|
|
<p>{{ _('Enter the email address for the user account you wish to recover the password for:') }}</p>
|
2017-11-30 11:16:38 +00:00
|
|
|
<form action="{{ url_for('browser.forgot_password') }}" method="POST" name="forgot_password_form">
|
2015-01-22 15:56:23 +00:00
|
|
|
{{ forgot_password_form.hidden_tag() }}
|
|
|
|
|
<fieldset>
|
2016-06-21 14:21:06 +01:00
|
|
|
{{ render_field_with_errors(forgot_password_form.email, "text") }}
|
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 17:14:55 +05:30
|
|
|
<input class="btn btn-primary btn-block btn-login" type="submit" value="{{ _('Recover Password') }}"
|
2018-01-08 12:43:36 +00:00
|
|
|
title="{{ _('Recover Password') }}">
|
2016-06-21 14:21:06 +01:00
|
|
|
</fieldset>
|
2015-01-22 15:56:23 +00:00
|
|
|
</form>
|
2017-12-18 09:15:36 +00:00
|
|
|
{% endif %}
|
2015-01-22 15:56:23 +00:00
|
|
|
{% endblock %}
|