mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 07:20:17 +02:00
24 lines
821 B
HTML
24 lines
821 B
HTML
{% extends 'registration/password_reset_base.html' %}
|
|
{% load staticfiles %}
|
|
{% load i18n %}
|
|
{% load bootstrap %}
|
|
|
|
{% block page_title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container" style="margin-top:150px">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="panel panel-default panel-transparent">
|
|
<div class="panel-body">
|
|
<h1 class="text-center">{% trans 'Password Reset Success' %}</h1>
|
|
|
|
<p>{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}</p>
|
|
|
|
<p>{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|