mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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
21 lines
896 B
HTML
21 lines
896 B
HTML
{% extends "security/panel.html" %}
|
|
{% 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 %}
|
|
{% block panel_body %}
|
|
{% if config.SERVER_MODE %}
|
|
<p>{{ _('Enter the email address for the user account you wish to recover the password for:') }}</p>
|
|
<form action="{{ url_for('browser.forgot_password') }}" method="POST" name="forgot_password_form">
|
|
{{ forgot_password_form.hidden_tag() }}
|
|
<fieldset>
|
|
{{ render_field_with_errors(forgot_password_form.email, "text") }}
|
|
<input class="btn btn-primary btn-block btn-login" type="submit" value="{{ _('Recover Password') }}"
|
|
title="{{ _('Recover Password') }}">
|
|
</fieldset>
|
|
</form>
|
|
{% endif %}
|
|
{% endblock %}
|