{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Set New Password" %}{% endblock %}
{% block content %}
{% if token_fail %}
{% trans "Invalid Reset Link" %}
{% else %}
{% trans "Set New Password" %}
{% endif %}
{% if token_fail %}
{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}
{% else %}
{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
{% endif %}
{% if not token_fail %}
{% else %}
{% trans "Request New Reset Link" %}