25 lines
952 B
HTML
25 lines
952 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Broccolini Settings - Login</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/css/login.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-card">
|
|
<h1>Broccolini Settings</h1>
|
|
<p>Enter the admin password to continue.</p>
|
|
<form id="login-form">
|
|
<input type="password" name="password" id="password" placeholder="Password" autofocus required>
|
|
<button type="submit">Sign in</button>
|
|
<div class="error" id="error">Invalid password</div>
|
|
</form>
|
|
</div>
|
|
<script src="/js/login.js"></script>
|
|
</body>
|
|
</html>
|