aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/password_reset_form.html
blob: 94a32694d0252676cd7d4d30b9f1101906bb6ce2 (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 {{color}}" type="submit">Invia</button>
          </form>
        </div>
      </div>
    </div>
  </div>
{% endblock %}