summaryrefslogtreecommitdiffstats
path: root/templates/login.html
blob: cd0fb57b71e2a7e127beed86dbc8cf2dd196c355 (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 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 %}