{% extends 'portal/form_shapes.html' %} {% load static %} {% block form_content %} {% if usertype == "TEACHER" %}

Reset password

Please enter your email address

We will send an email with a link to reset your password.

{% csrf_token %} {{ form.non_field_errors }}
{{ form.email }} {{ form.email.help_text }} {{ form.email.error }}
{% if should_use_recaptcha %} {{ form.captcha }} {% endif %}
Cancel
{% else %}

Reset password

Please enter your username

We will send an email with a link to reset your password.

{% csrf_token %} {{ form.non_field_errors }}
{{ form.username }} {{ form.username.help_text }} {{ form.username.error }}
{% if should_use_recaptcha %} {{ form.captcha }} {% endif %}
Cancel
{% endif %} {% endblock form_content %}