17 lines
291 B
HTML
17 lines
291 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
<h2>Log In</h2>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">Log In</button>
|
|
</form>
|
|
{% endblock %}
|
|
</body>
|
|
</html> |