mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 00:36:52 -06:00
13 lines
572 B
HTML
13 lines
572 B
HTML
|
{% extends "security/panel.html" %}
|
||
|
{% block panel_title %}Recover pgAdmin Password{% endblock %}
|
||
|
{% block panel_body %}
|
||
|
<p>Enter the email address for the user account you wish to recover the password for:</p>
|
||
|
<form action="{{ url_for_security('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-lg btn-success btn-block" type="submit" value="Recover Password">
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
{% endblock %}
|