16 lines
526 B
HTML
16 lines
526 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Bad token" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="uk-flex uk-flex-center uk-margin-top">
|
|
<div class="uk-card uk-card-default uk-card-body">
|
|
<h1>{% trans "Bad token" %}</h1>
|
|
{% url "account_password_reset" as url %}
|
|
<p>{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a <a href="{{ url }}">new password reset</a>.{% endblocktrans %}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|