{% extends 'base.html' %} {% block title %}Set New Password - Referral Rewards{% endblock %} {% block content %}

Set New Password

Please enter your new password twice so we can verify you typed it correctly.

{% if validlink %}
{% csrf_token %} {% if form.errors %}
Please correct the errors below.
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% else %}
The password reset link was invalid, possibly because it has already been used. Please request a new password reset.
Request New Link {% endif %}
{% endblock %}