2019-04-16 00:16:30 +00:00
|
|
|
{% extends "base_short.html" %}
|
|
|
|
{% load i18n staticfiles bootstrap3 %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title> Reset request processed and confirmation email sent </title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="auth-container">
|
|
|
|
<div class="auth-bg"></div>
|
|
|
|
<div class="auth-center">
|
|
|
|
<div class="auth-content">
|
|
|
|
<div class="auth-box">
|
|
|
|
<h1 class="section-heading allcaps">{% trans " Reset request processed " %}</h1>
|
|
|
|
<p class="text-center">{% trans "You will shortly get the confirmation email. Please follow the instructions sent to reset your password." %}</p>
|
|
|
|
<form action="{% url 'index' %}" method="get" class="form" novalidated>
|
|
|
|
<div class="text-center">
|
|
|
|
<button type="submit" class="btn choice-btn btn-block">
|
|
|
|
{% trans "Back to indexpage" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|