2015-06-11 22:12:09 +03:00

22 lines
463 B
HTML

{% extends "base.html" %}
{% load bootstrap3 %}
{% block content %}
<h1>Log In</h1>
<p>
Please enter your email address.
Next, we'll send you an email with log-in instructions!
</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">
Submit
</button>
{% endbuttons %}
</form>
{% endblock %}