mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 23:10:15 +02:00
28 lines
999 B
HTML
28 lines
999 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">
|
|
<form class="form-signin" role="form" action="" method="POST">
|
|
{% csrf_token %}
|
|
<h1 class="text-center">{% trans "Password Reset" %}</h1>
|
|
|
|
<p class="text-center">{% trans "Forgotten your password? Enter your email below." %}</p>
|
|
{{ form|bootstrap }}
|
|
<div class="">
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">{% trans "Reset Password" %}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|