You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
463 B

{% 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 %}