{% 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 %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% for field in form %} {{ field.label }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %} Return to login Reset Password {% endblock %}