mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
27 lines
796 B
HTML
27 lines
796 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load i18n %}
|
|
{% load account %}
|
|
|
|
{% block head_title %}
|
|
{% trans 'Password Reset' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
|
|
<div class="md:pt-11 md:mt-11 w-full bg-white dark:bg-charcoal mx-auto rounded py-6 px-3">
|
|
<div class="md:w-full text-center">
|
|
<h1 class="text-3xl">{% trans 'Password Reset' %}</h1>
|
|
|
|
{% if user.is_authenticated %}
|
|
{% include 'account/snippets/already_logged_in.html' %}
|
|
{% endif %}
|
|
|
|
<p>
|
|
{% blocktrans %}We have sent you an e-mail. If you have not received it please check your spam folder. Otherwise contact us if you do not receive it in a few minutes.{% endblocktrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|