27 lines
701 B
HTML
Executable file
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 %}
|