{% extends 'base.html' %} {% block title %}Forgot Your Password? - PixelMinds{% endblock %} {% block content %}

Password Recovery

Enter your email address and we will send you a link to reset your password.
{% csrf_token %} {% if form.non_field_errors %} {% endif %} {% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Return to login
{% endblock %}