13 lines
251 B
HTML
13 lines
251 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Login</h2>
|
|
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
{% endblock %}
|