You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
834 B
26 lines
834 B
2 years ago
|
{% extends 'base.html' %}
|
||
|
{% load bootstrap5 %}
|
||
|
{% block content %}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<form
|
||
|
action="{% url 'authenticate' %}"
|
||
|
method="post"
|
||
|
enctype="application/x-www-form-urlencoded"
|
||
|
>
|
||
|
{% csrf_token %}
|
||
|
{% bootstrap_form user_form %}
|
||
|
{% buttons %}
|
||
|
<button
|
||
|
class="btn btn-primary"
|
||
|
type="submit"
|
||
|
>
|
||
|
Войти
|
||
|
</button>
|
||
|
{% endbuttons %}
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|