19 lines
492 B
HTML
19 lines
492 B
HTML
{% extends "base.html" %}
|
|
{% load django_bootstrap5 %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1>Login</h1>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% bootstrap_form form %}
|
|
{% bootstrap_button button_type="submit" content="OK" %}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock content %}
|