{% extends "theme.html" %} {% block body %}

Recovering a lost MSColab password

If you have forgotten your password, please enter your email address and click "Reset password" You will receive an email containing a recovery token that you can use to change your password. The email will also contain further explanations.

{% for mesg in get_flashed_messages(category_filter=["category_success"]) %}
Success! {{ mesg }}.
{% endfor %} {% for mesg in get_flashed_messages(category_filter=["category_info"]) %}
Info! {{mesg}}.
{% endfor %} {% for mesg in get_flashed_messages(category_filter=["category_danger"]) %}
Failed! {{mesg}}.
{% endfor %} {{form.hidden_tag()}}
{{form.email(class="form-control", placeholder="Email")}}
{% if form.email.errors %} {% for error in form.email.errors %} {{error}} {% endfor %}
{% endif %}
{{ form.submit(class="btn btn-primary") }}
{% endblock %}