36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Логин</title>
|
||
<link rel="stylesheet" href="../../static/css/main.css">
|
||
</head>
|
||
<body>
|
||
|
||
<nav>
|
||
<img src="../../static/img/logo.png" alt="logo" class="logo">
|
||
</nav>
|
||
|
||
<div class="page-content">
|
||
<h2>Здравствуйте!</h2>
|
||
<p class="hello">Это техподдержка ООО "ИЗИ ВЕЙ". Войдите
|
||
в систему, чтобы получить помощь.</p>
|
||
<div class="card">
|
||
<form action="" method="POST">
|
||
{% csrf_token %}
|
||
<p>
|
||
<label for="">Логин</label>
|
||
{{ form.username }}
|
||
</p>
|
||
<p>
|
||
<label for="">Пароль</label>
|
||
{{ form.password }}
|
||
</p>
|
||
<button type="submit">Войти</button>
|
||
{{ error }}
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html> |