{% extends 'auth/base.html' %} {% load static %} {% block title %}Set New Password - {{ block.super }}{% endblock %} {% block content %}
{% if validlink %}

Set New Password

Enter your new password below

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
Password strength
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
Password Requirements
  • At least 8 characters long
  • Contains uppercase letter
  • Contains lowercase letter
  • Contains number
  • Contains special character
Security Tips
Use a unique password that you don't use elsewhere
Consider using a password manager
Enable two-factor authentication for extra security
{% else %}

Invalid Reset Link

This password reset link is invalid or has expired. Password reset links are only valid for 24 hours.

Possible reasons:
  • The link has expired (older than 24 hours)
  • The link has already been used
  • The link was copied incorrectly
  • A newer reset request was made
{% endif %}
{% if validlink %}
Security Notice: This reset link will expire in 24 hours. If you didn't request this password reset, please ignore this email and contact our support team immediately.
{% endif %} {% endblock %} {% block extra_js %} {% if validlink %} {% endif %} {% endblock %}