This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
|
{% 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 %}
|