11 lines
230 B
HTML
11 lines
230 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<form method="POST" class="vertical">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
<div class="form-actions">
|
|
<button type="submit">Login</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |