Files
caminus/templates/registration/login.html
Trever Fischer 548de830f0 Initial commit
2012-02-17 15:36:35 -05:00

12 lines
249 B
HTML

{% extends "base.html" %}
{%block title %}Login{% endblock %}
{% block content %}
<form action="{% url django.contrib.auth.views.login %}" method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Login"/>
</form>
{% endblock %}