mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
15 lines
589 B
HTML
15 lines
589 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _fsdomain('Change password') }}</h1>
|
|
<form action="{{ url_for_security('change_password') }}" method="POST" name="change_password_form">
|
|
{{ change_password_form.hidden_tag() }}
|
|
{{ render_field_with_errors(change_password_form.password) }}
|
|
{{ render_field_with_errors(change_password_form.new_password) }}
|
|
{{ render_field_with_errors(change_password_form.new_password_confirm) }}
|
|
{{ render_field(change_password_form.submit) }}
|
|
</form>
|
|
{% endblock %}
|