49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login Required</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
max-width: 500px;
|
|
margin: 40px auto;
|
|
padding: 20px;
|
|
}
|
|
.login-form {
|
|
border: 1px solid #ccc;
|
|
padding: 20px;
|
|
border-radius: 4px;
|
|
}
|
|
input[type="password"] {
|
|
width: 100%;
|
|
padding: 8px;
|
|
margin: 10px 0;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
input[type="submit"] {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
input[type="submit"]:hover {
|
|
background-color: #45a049;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-form">
|
|
<h2>Добро пожаловать!</h2>
|
|
<form method="POST">
|
|
<label for="password">Пароль:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<input type="submit" value="Войти">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|