56 lines
1.6 KiB
HTML
56 lines
1.6 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 id="loginForm">
|
|
<div class="form-group">
|
|
<label for="username">Логин:</label>
|
|
<input
|
|
type="text"
|
|
id="username"
|
|
name="username"
|
|
required
|
|
placeholder="Введите ваш логин"
|
|
/>
|
|
</div>
|
|
<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>
|
|
<p class="auth-link">
|
|
Нет аккаунта? <a href="/register">Зарегистрируйтесь</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<p>Создатель: <span>Fovway</span></p>
|
|
</div>
|
|
<script src="/login.js"></script>
|
|
</body>
|
|
</html>
|