flangr/flangr/templates/registration/login.html

10 lines
224 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Login</h1>
<form action="" method="post">
{% csrf_token %}
{{ form }}
<input type="submit", value="Post">
</form>
{% endblock content %}