{% extends "registration/base.html" %}{% load i18n %}{% load crispy_forms_tags %}{% get_current_language as LANGUAGE_CODE %}{% block title-page %}{% trans "Password reset confirm" %}{% endblock %}{% block content_box %}<divclass="row"><divclass="login-form-errors"> {% include "display-form-errors.html" %}</div><divclass="col-sm-12"><div> {% blocktrans %} Please enter your new password twice so we can verify you typed it in correctly. {% endblocktrans %}</div> {% if form %} {% crispy form %} {% else %}<divclass="alert alert-warning"> {% url "accounts.password-reset" as url %} {% blocktrans with url=url %}This token is expired, please <ahref="{{ url }}">request</a> a new password reset link again.{% endblocktrans %}</div> {% endif %}</div></div>{% endblock %}