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.
2022-09-27 16:57:05 +03:00

25 lines
599 B
HTML

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