NoteJS/public/index.html

41 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Вход в систему заметок</title>
<link rel="stylesheet" href="/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<header>Вход в систему заметок</header>
<div class="login-form">
<form action="/login" method="POST">
<div class="form-group">
<label for="password">Пароль:</label>
<input
type="password"
id="password"
name="password"
required
placeholder="Введите пароль"
/>
</div>
<button type="submit" class="btnSave">Войти</button>
</form>
<div id="errorMessage" class="error-message" style="display: none">
Неверный пароль!
</div>
</div>
</div>
<div class="footer">
<p>Создатель: <span>Fovway</span></p>
</div>
<script src="/login.js"></script>
</body>
</html>