29 lines
770 B
HTML
29 lines
770 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="login.css">
|
|
<link
|
|
rel="preload"
|
|
href="fonts/MurreyC/murreyc.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossorigin
|
|
>
|
|
</head>
|
|
<body>
|
|
<div class="bg"></div>
|
|
<div class="glass-container">
|
|
<div class="login-box">
|
|
<h2>Введите код</h2>
|
|
<form id="loginForm">
|
|
<input type="password" id="password" name="password" required placeholder="Код">
|
|
<button type="submit">Войти</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script src="login.js" defer></script>
|
|
</body>
|
|
</html> |