{% extends 'accounts/base.html' %} {% load static %} {% block title %}Set New Password - Accounts{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if validlink %} {% if not password_changed %}

Set New Password

Create a strong, secure password

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
Enter a password to see strength
Password Requirements
At least 8 characters long
Contains uppercase letter (A-Z)
Contains lowercase letter (a-z)
Contains number (0-9)
Contains special character (!@#$%^&*)
Passwords match
{% else %}

Password Updated

Your password has been successfully changed

Success!

Your password has been updated successfully. You can now sign in with your new password.

Security Tips:
  • Keep your password secure and don't share it
  • Consider enabling two-factor authentication
  • Use a unique password for this account
  • Update your password regularly
{% endif %} {% else %}

Invalid Reset Link

This password reset link is not valid

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}