{% load static i18n %} {% trans "Set New Password" %} - KAAUH ATS {% get_current_language as LANGUAGE_CODE %}

{% trans "جامعة الأميرة نورة بنت عبدالرحمن الأكاديمية" %}
{% trans "ومستشفى الملك عبدالله بن عبدالعزيز التخصصي" %}
{% trans "Princess Nourah bint Abdulrahman University" %}
{% trans "King Abdullah bin Abdulaziz University Hospital" %}

Powered By TENHAL | تنحل

{% trans "Set New Password" %}

{% if form %}

{% trans 'Please enter your new password below.' %}

{% trans 'You can then log in.' %}

{% csrf_token %} {# Non-Field Errors (General errors like tokens or passwords not matching) #} {% if form.non_field_errors %} {% endif %} {# Password 1 Field #}
{# **CRITICAL FIX:** Iterate over the errors to display them correctly #} {% if form.password.errors %}
{% for error in form.password.errors %} {{ error }} {% endfor %}
{% endif %}
{# Password 2 Field #}
{# **CRITICAL FIX:** Iterate over the errors to display them correctly #} {% if form.password2.errors %}
{% for error in form.password2.errors %} {{ error }} {% endfor %}
{% endif %}
{# Hidden fields MUST be present for the POST request to be valid #} {{ form.uid }} {{ form.token }} {# Submit Button #}
{% else %} {# Message when the reset key is invalid or expired #}

{% trans "Password Reset Failed" %}

{% trans "The password reset link is invalid or has expired." %}

{% endif %}