blob: 5789900c4e0b76559b569ac58c405bd61d390438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends 'registration/base_simple.html' %}
{% block content %}
<div class="row">
<div class="col l4 offset-l4 m8 offset-m2 s12">
<div class="card">
<div class="card-content">
<h5>Reimposta password</h5>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<br>
<button class="btn waves-effect waves-light" type="submit">Invia</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}
|