This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/Auth/templates/auth.html

29 lines
1001 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Авторизация</title>
<link href="/static/css/auth.css" type="text/css" rel="stylesheet">
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>Авторизация</h1>
<div class="form">
<form action="" method="post" name="auth">
<label for="login">Логин: </label>
<input type="text" name="login" required>
<label for="password">Пароль: </label>
<input type="password" name="password" required><br>
<p>
Уровень доступа:
<select name="access">
<option value="internal_users">Внутренний</option>
<option value="external_users">Внешний</option>
</select>
</p>
<input type="submit" value="Вход">
</form>
</div>
</body>
</html>