aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/login.html
blob: 9459f9325a4c455e94eeeb1421a747ea186d4ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends 'registration/base_simple.html' %}

{% block title %}Login{% endblock %}

{% block content %}
  <div class="row">
    <div class="col l4 offset-l4 m8 offset-m2 s12">
      <div class="card">
        <div class="card-content">
          <form method="post">
            {% csrf_token %}
            {{ form.as_p }}
            <br>
            <button class="btn waves-effect waves-light" type="submit">Login</button>
          </form>
        </div>
      </div>
    </div>
  </div>
{% endblock %}