Files
flask-security/flask_security/templates/security/registrations/edit.html
T
2012-08-15 19:22:06 -04:00

11 lines
569 B
HTML

{% from "security/macros.html" import render_field_with_errors, render_field %}
{% include "security/messages.html" %}
<h1>Edit Account</h1>
<form action="{{ url_for('flask_security.update_user') }}" method="POST" name="edit_user_form">
{{ edit_user_form.hidden_tag() }}
{{ render_field_with_errors(edit_user_form.email) }}
{{ render_field_with_errors(edit_user_form.password) }}
{{ render_field_with_errors(edit_user_form.password_confirm) }}
{{ render_field_with_errors(edit_user_form.current_password) }}
{{ render_field(edit_user_form.submit) }}
</form>