blob: 356fc9bde6dd4d105d0be934de7b83044905a9c4 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>留言板 (Local) — SillyLaird</title>
<meta name="description" content="Simple localStorage guestbook." />
<meta property="og:title" content="留言板 (Local) — SillyLaird" />
<meta property="og:description" content="Simple localStorage guestbook." />
<meta property="og:image" content="https://www.sillylaird.ca/lain.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.sillylaird.ca/guestbook_zh.html" />
<meta property="og:locale" content="zh_CN" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:locale:alternate" content="ja_JP" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="留言板 (Local) — SillyLaird" />
<meta property="og:description" content="Simple localStorage guestbook." />
<meta name="twitter:image" content="https://www.sillylaird.ca/lain.png" />
<link rel="canonical" href="https://www.sillylaird.ca/guestbook_zh.html" />
<link rel="alternate" hreflang="x-default" href="https://www.sillylaird.ca/guestbook.html" />
<link rel="alternate" hreflang="en" href="https://www.sillylaird.ca/guestbook.html" />
<link rel="alternate" hreflang="zh" href="https://www.sillylaird.ca/guestbook_zh.html" />
<link rel="alternate" hreflang="ja" href="https://www.sillylaird.ca/guestbook_jp.html" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/assets/css/site.css" />
<link rel="stylesheet" href="/assets/css/pages/guestbook_zh.css" />
<script defer src="/assets/js/includes.js"></script>
</head>
<body>
<a class="skip-link" href="#main">跳至内容</a>
<div data-include="header"></div>
<main id="main" class="wrap">
<section aria-labelledby="guestbook-title">
<h1 id="guestbook-title">留言板 (Local)</h1>
<p class="muted">This page stores entries in your browser (localStorage). It is not shared between visitors.</p>
<form id="guestbook-form">
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name" value="Anonymous" />
</div>
<div>
<label for="message">Message</label>
<textarea id="message" name="message"></textarea>
</div>
<div>
<label for="captcha-input">Captcha</label>
<input type="text" id="captcha-input" name="captcha-input" />
</div>
<div>
<canvas id="captcha-canvas" width="160" height="48"></canvas>
</div>
<div class="btn-row">
<button type="button" id="refresh-captcha">Refresh Captcha</button>
<button type="submit">Submit</button>
</div>
</form>
<div id="guestbook-entries" aria-live="polite"></div>
</section>
</main>
<div data-include="footer"></div>
<script defer src="/assets/js/pages/guestbook_zh.js"></script>
</body>
</html>
|