newsreader/src/newsreader/templates/password-reset/password_reset_done.html
2019-11-27 22:10:02 +01:00

27 lines
701 B
HTML
Executable file

{% extends "base.html" %}
{% load static i18n %}
{% block title %}{% trans "Password reset" %}{% endblock %}
{% block head %}
<link href="{% static 'accounts/dist/css/password-reset.css' %}" rel="stylesheet" />
{% endblock %}
{% block content %}
<main class="content">
<div class="card">
<div class="card__header">
<h1>{% trans "Password reset" %}</h1>
</div>
<div class="card__content">
<p>
{% blocktrans %}
We have sent you an email with a link to reset your password. Please check
your email and click the link to continue.
{% endblocktrans %}
</p>
</div>
<div class="card__footer" />
</div>
</main>
{% endblock %}