23 lines
550 B
HTML
23 lines
550 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% load account %}
|
||
|
{% load bootstrap3 %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-6 col-md-offset-3">
|
||
|
<h1>Lost your password?</h1>
|
||
|
<p>
|
||
|
Lost your password? Input your email, and we will send you an e-mail
|
||
|
with instructions for resetting your password.
|
||
|
</p>
|
||
|
|
||
|
<form class="login" method="POST">
|
||
|
{% csrf_token %}
|
||
|
{% bootstrap_form form %}
|
||
|
<button class="form-control btn btn-black" type="submit">Send e-mail</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
{% endblock %}
|