-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (49 loc) · 2.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<title>Reminder</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="reminder,remind,share,sharesheet,notification,javascript,catdad">
<meta http-equiv="origin-trial" content="Aq90vy5PLVlAzsRcKENj4xNMKPpxqTKv/Ta6CveKsp5bvfdynLL5KXIAPDC4hnZs/iI17XcvaSM5kdx7MM13RwAAAABqeyJvcmlnaW4iOiJodHRwczovL2NhdGRhZC1leHBlcmltZW50cy5naXRodWIuaW86NDQzIiwiZmVhdHVyZSI6Ik5vdGlmaWNhdGlvblRyaWdnZXJzIiwiZXhwaXJ5IjoxNTk1OTgwNzk5fQ==">
<!-- Manifest -->
<link rel="manifest" href="./manifest.json">
<meta name="theme-color" content="#202124">
<link rel="icon" type="image/png" href="assets/icon-512.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/src/toastify.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div id="unsupported" class="unsupported limit">
<p>This browser is not supported.</p>
<p>See the <a href="https://github.com/catdad-experiments/reminder">GitHub page</a> for more info.</p>
</div>
<div id="preview" class="preview limit hide">
<div class="card">
Reminder is running in preview mode. Since this browser does not support
Notification Triggers, reminders cannot be scheduled for the future.
</div>
</div>
<div id="main" class="main limit hide">
</div>
<div id="create" class="create create-vars">
<i class="material-icons">add</i>
</div>
<div id="floating-menu" class="floating-menu create-vars">
<div id="create-image" class="fm-option">Image</div>
<div id="create-note" class="fm-option">Note</div>
</div>
<script type="module">
document.querySelector('#unsupported').remove();
document.querySelector('#main').classList.remove('hide');
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/toastify.min.js"></script>
<script type="module" async>
import loader from './src/loader.js';
loader();
</script>
<script src="/analytics.js" async></script>
</body>
</html>