-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.html
More file actions
34 lines (30 loc) · 1.3 KB
/
Copy pathauth.html
File metadata and controls
34 lines (30 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign in — Bookworm</title>
<meta name="description" content="Sign in to Bookworm with a one-time email code. No password to create or remember.">
<meta name="robots" content="noindex">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='9' fill='%2308304c'/><path d='M7 9.5c3.4-1.3 5.9-1.3 8.6.6v13c-2.7-1.9-5.2-1.9-8.6-.6z' fill='%23fff'/><path d='M25 9.5c-3.4-1.3-5.9-1.3-8.6.6v13c2.7-1.9 5.2-1.9 8.6-.6z' fill='%23ffa130'/></svg>">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" href="assets/css/style.css">
<script>
try {
var t = localStorage.getItem('bookworm:theme');
if (t === 'light' || t === 'dark') document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
</script>
</head>
<body data-page="auth">
<header class="nav-shell" data-nav></header>
<main class="section" data-auth>
<div class="hero-glow"></div>
</main>
<footer class="footer" data-footer></footer>
<script src="assets/js/data.js"></script>
<script src="assets/js/art.js"></script>
<script src="assets/js/auth.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>