23 lines
773 B
HTML
23 lines
773 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>
|
|
<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><input type="checkbox" name="internal">Внутренний пользователь</p>
|
|
<input type="submit" value="Вход">
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|