{% extends "base.html" %} {% load databrowse_media_url_fix %} {% load i18n %} {% block extrahead %} {% endblock %} {% block title %} | {% trans 'Password reset' %}{% endblock %} {% block content %} {% if validlink %}

{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

{% trans 'Enter new password' %}

{% if form.new_password1.errors %} {% endif %} {% if form.new_password2.errors %} {% endif %}
{{ form.new_password1.label_tag }} {{ form.new_password1 }}
{{ form.new_password1.errors }}
{{ form.new_password2.label_tag }} {{ form.new_password2 }}
{{ form.new_password2.errors }}
{% else %}

{% trans 'Password reset unsuccessful' %}

{% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}

{% endif %} {% endblock %}