Initial commit
This commit is contained in:
12
templates/security/reset_password.html
Normal file
12
templates/security/reset_password.html
Normal file
@@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% set page_title = 'Password reset' %}
|
||||
{% from "_formhelpers.html" import render_field, render_submit %}
|
||||
|
||||
{% block content %}
|
||||
<form action="{{ url_for_security('reset_password', token=reset_password_token) }}" method="POST" class="form-horizontal col-md-6 col-md-offset-3">
|
||||
{{ reset_password_form.hidden_tag() }}
|
||||
{{ render_field(reset_password_form.password) }}
|
||||
{{ render_field(reset_password_form.password_confirm) }}
|
||||
{{ render_submit() }}
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user