11 lines
210 B
HTML
11 lines
210 B
HTML
<!DOCTYPE html>
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Login</h2>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Log In" />
|
|
</form>
|
|
{% endblock %}
|