summaryrefslogtreecommitdiffstats
path: root/templates/login.html
blob: d6e4574f265dc4ae0ba3b62fe8ab6ff2462eaa24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% 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 %}