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