mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-03 20:20:46 -06:00
5799ac14ba
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
30 lines
1.5 KiB
HTML
30 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{% from "security/fields.html" import render_field_with_errors %}
|
|
{% block body %}
|
|
<div class="container-fluid change_pass">
|
|
{% include "security/messages.html" %}
|
|
<div class="row align-items-center h-100">
|
|
<div class="col-md-4"></div>
|
|
<div class="col-md-4">
|
|
<div class="panel-header h4"><i class="app-icon pg-icon-blue"></i> {{ _('%(appname)s', appname=config.APP_NAME) }}</div>
|
|
<div class="panel-body">
|
|
<div class="d-block text-color pb-3 h5">{{ _('Password Change', appname=config.APP_NAME) }}</div>
|
|
{% if config.SERVER_MODE %}
|
|
<form action="{{ url_for('browser.change_password') }}" method="POST" name="change_password_form">
|
|
{{ change_password_form.hidden_tag() }}
|
|
<fieldset>
|
|
{{ render_field_with_errors(change_password_form.password, "password") }}
|
|
{{ render_field_with_errors(change_password_form.new_password, "password") }}
|
|
{{ render_field_with_errors(change_password_form.new_password_confirm, "password") }}
|
|
<input class="btn btn-primary btn-block btn-change-pass" type="submit" value="{{ _('Change Password') }}"
|
|
title="{{ _('Change Password') }}">
|
|
</fieldset>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4"></div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|