{% extends 'base.html' %} {% import 'bootstrap/wtf.html' as wtf %} {% block page_content %}
{% if form.__class__.__name__ == 'RequestPasswordForm' %}

Reset password

Enter the e-mail address of your account.

{% elif form.__class__.__name__ == 'ResetPasswordForm' %}

Set a new password

Choose a strong password for your account.

{% elif form.__class__.__name__ == 'ChangePasswordForm' %}

Change password

Update the password for your account.

{% endif %} {{ wtf.quick_form(form) }}
{% endblock %}