This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
533 B
HTML

{% extends 'base.html' %}
{% block title %} Аккаунт | вход {% endblock %}
{% block styles %}
<style>
.error_class {
border: red solid 2px;
}
</style>
{% endblock %}
{% block content %}
<h1> Ваш аккаунт </h1>
<h3>Вход</h3>
<form action="{% url 'login' %}" method="POST">
{% csrf_token %}
<table>
<tbody>
{{ form.as_table }}
</tbody>
</table>
<button type="submit">Войти</button>
</form>
{% endblock %}