7 lines
158 B
HTML
7 lines
158 B
HTML
|
<!-- templates/registration/login.html -->
|
||
|
<h2>Log In</h2>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Log In</button>
|
||
|
</form>
|