19 lines
513 B
HTML
19 lines
513 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Login{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<h2 class="text-center mt-5">Login</h2>
|
|
<form method="post" class="mt-4">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn btn-primary w-100">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|