summaryrefslogtreecommitdiffstats
path: root/templates/auth/login.html
blob: 3ba4e2eefd38a8753a7941ecfb24ca1a901f3db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "layout.html" %}
{% from "_formhelpers.html" import render_field %}

{% block head %}Login{% endblock %}

{% block content %}
<form class="form-horizontal" role="form" method="POST">
  {% for field in form %}
  {{ render_field(field) }}
  {% endfor %}
  <div class="form-group">
    <div class="col-lg-offset-2 col-lg-10">
      <button type="submit" class="btn btn-default">Sign in</button>
    </div>
  </div>
</form>
{% endblock %}