reset_password.html 541 B

123456789101112131415161718
  1. {% set page_title = _("Reset Password") %}
  2. {% extends theme("layout.html") %}
  3. {% block content %}
  4. {% from theme("macros.html") import horizontal_field %}
  5. <form class="form-horizontal" role="form" method="POST">
  6. <h2>{% trans %}Reset Password{% endtrans %}</h2>
  7. <hr>
  8. {{ form.hidden_tag() }}
  9. {{ form.token }}
  10. {{ horizontal_field(form.email) }}
  11. {{ horizontal_field(form.password) }}
  12. {{ horizontal_field(form.confirm_password)}}
  13. {{ horizontal_field(form.submit)}}
  14. </form>
  15. {% endblock %}