-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (39 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Share on Mastodon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<link rel="localization" href="locales/manifest.json" />
<link rel="stylesheet" href="css/main.css" />
<script src="js/podlist.js" type="text/javascript"></script>
<script src="js/share.js" type="text/javascript"></script>
<script defer src="js/l20n.min.js" type="text/javascript"></script>
</head>
<body>
<header>
<div class="head-title" data-l10n-id="sharing">Sharing</div>
<div class="details">
<div class="title"></div>
<div class="url"></div>
</div>
</header>
<div class="wrapper">
<form class="search">
<input type="search" name="podname" value="" placeholder="Search or enter pod" data-l10n-id="search">
</form>
<div class="pod-list">
</div>
<div class="options">
<label>
<input id="remember" type="checkbox">
<span data-l10n-id="remember">Remember my choice, don't ask again</span>
</label>
<label>
<input id="nosuggest" type="checkbox">
<span data-l10n-id="nosuggest">Don't suggest instances</span>
</label>
</div>
</div>
</body>
</html>