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
2024-10-24 16:52:12 +03:00

18 lines
530 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Авторизация</title>
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
</head>
<body>
<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>
<input type="submit" value="Вход">
</form>
</body>
</html>