{% extends "base.html" %} {% load static %} {% block title %} Change Password Using Key {% endblock title %} {% block description %} Secure your account by changing your password using a key. Enter your current password and set a new, strong password to protect your information. {% endblock description %} {% block keywords %} Change Password, Using Key, Secure Account, Update Password, Strong Password, Protect Information {% endblock keywords %} {% block og_title %} Change Password Using Key - Secure Your Account {% endblock og_title %} {% block og_description %} Change your password using a key to secure your account. Enter your current password and set a new, strong password to ensure your information is protected. {% endblock og_description %} {% load i18n %} {% block content %}

{% if token_fail %} {% trans "Bad Token" %} {% else %} {% trans "Change Password" %} {% endif %}

{% if token_fail %} {% url 'account_reset_password' as passwd_reset_url %}

The password reset link was invalid, possibly because it has already been used. Try again.

{% else %} {% if form %}
{% csrf_token %}
{% if form.password1.errors %}{{ form.password1.errors }}{% endif %}
{% if form.password2.errors %}{{ form.password2.errors }}{% endif %}
{% else %}

{% trans "Your password is now changed!" %}

{% endif %} {% endif %}
{% endblock content %}