oasupport/clientapp/templates/clientapp/login.html
2025-12-03 11:16:47 +03:00

36 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>