mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
13 lines
588 B
HTML
13 lines
588 B
HTML
|
|
{% extends "security/panel.html" %}
|
||
|
|
{% block panel_title %}pgAdmin Password Reset{% endblock %}
|
||
|
|
{% block panel_body %}
|
||
|
|
<form action="{{ url_for_security('reset_password', token=reset_password_token) }}" method="POST" name="reset_password_form">
|
||
|
|
{{ reset_password_form.hidden_tag() }}
|
||
|
|
<fieldset>
|
||
|
|
{{ render_field_with_errors(reset_password_form.password, "password") }}
|
||
|
|
{{ render_field_with_errors(reset_password_form.password_confirm, "password") }}
|
||
|
|
<input class="btn btn-lg btn-success btn-block" type="submit" value="Reset Password">
|
||
|
|
</fieldset>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|