20 lines
1002 B
HTML
20 lines
1002 B
HTML
{% extends "security/base.html" %}
|
|
{% from "macros.html" import render_field %}
|
|
|
|
{% block title %} {{ _fsdomain('Reset password') }} {% endblock %}
|
|
{% block content_title %} {{ _fsdomain('Reset password') }} {% endblock %}
|
|
{% block content_description %}An email will be sent to you with instructions.{% endblock %}
|
|
{% block content %}
|
|
{# {% include "security/_messages.html" %}#}
|
|
{# <form action="{{ url_for_security('reset_password', token=reset_password_token) }}" method="post" name="reset_password_form">#}
|
|
<form action="" method="post">
|
|
{{ reset_password_form.hidden_tag() }}
|
|
{# {{ render_form_errors(reset_password_form) }}#}
|
|
{{ render_field(reset_password_form.password) }}
|
|
{{ render_field(reset_password_form.confirm_password) }}
|
|
{# {{ render_field_errors(reset_password_form.csrf_token) }}#}
|
|
<button type="submit" class="btn btn-primary">Reset Password</button>
|
|
</form>
|
|
{# {% include "security/_menu.html" %}#}
|
|
{% endblock content %}
|