mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 00:36:52 -06:00
14 lines
653 B
HTML
14 lines
653 B
HTML
|
{% extends "security/panel.html" %}
|
||
|
{% block panel_title %}pgAdmin Password Change{% endblock %}
|
||
|
{% block panel_body %}
|
||
|
<form action="{{ url_for_security('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-lg btn-success btn-block" type="submit" value="Change Password">
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock %}
|