{% extends 'layouts/full_base.html' %} {% block title %}Set New Password - Adtlas{% endblock %} {% block meta_description %}Set your new Adtlas account password.{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if validlink %}

Set New Password

Enter your new password below

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{{ form.new_password1 }} {% if form.new_password1.errors %}
{% for error in form.new_password1.errors %}
{{ error }}
{% endfor %}
{% endif %}
Password must contain:
  • At least 8 characters
  • At least one uppercase letter
  • At least one lowercase letter
  • At least one number
{{ form.new_password2 }} {% if form.new_password2.errors %}
{% for error in form.new_password2.errors %}
{{ error }}
{% endfor %}
{% endif %}

Remember your password?

{% else %}

Invalid Reset Link

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

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