1
0
Fork 0
satnogs-db/db/templates/account/password_reset_done.html

20 lines
518 B
HTML

{% extends "account/base.html" %}
{% load account %}
{% block head_title %}Password Reset{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-xs-12">
<h2>Password Reset</h2>
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<p>We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.</p>
</div>
</div>
</div>
{% endblock %}