-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (101 loc) · 4.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<title>Celebrate!</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Take a moment to think about all the things you've achieved today. Write them down and receive a glowing compliment.">
<meta name="og:title" content="Celebrate!">
<meta name="og:type" content="website">
<meta name="og:image" content="https://f11xter.github.io/celebrate/og-image.png">
<meta name="og:url" content="https://f11xter.github.io/celebrate">
<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=Inter&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Merienda&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.svg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
</head>
<body>
<header>
<h1>Celebrate!</h1>
</header>
<noscript>
<div style="border: 2px dashed red; border-radius: 1rem; padding: 1rem;">
<p style="font-size: 1.5rem; margin: 0;">
This site requires JavaScript to work properly.
</p>
<p style="margin: 0;">
If you'd like to review the code, please visit the
<a href="https://github.com/f11xter/celebrate" style="color: deepskyblue;">GitHub</a>
</p>
</div>
</noscript>
<main>
<p id="date"></p>
<p>
Take a moment to think about everything you've done today<br />
Consider all the things you've achieved
</p>
<p>
Maybe you became an Olympic champion<br />
or maybe you ate a balanced meal
</p>
<p>
Write down everything you're proud of<br />
and everything you appreciate
</p>
<div class="hr"></div>
<div class="input-container">
<label for="name">My name is:</label>
<input type="text" name="name" id="name" placeholder="Bob">
</div>
<p>and today I'm proud to have...</p>
<div id="achievements"></div>
<div id="button-container">
<button type="button" id="clear">
<!-- Icon courtesy of Iconoir -->
<svg width="24px" height="24px" viewBox="0 0 24 24" stroke-width="1.5" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M21 21H9M15.889 14.89L8.464 7.463M2.893 12.607l9.193-9.193a2 2 0 012.828 0l4.95 4.95a2 2 0 010 2.828l-9.243 9.243a1.929 1.929 0 01-2.728 0l-5-5a2 2 0 010-2.828z"
stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
Clear
</button>
<button type="button" id="submit">
<!-- Icon courtesy of Iconoir -->
<svg width="24px" height="24px" stroke-width="1.5" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M5 13l4 4L19 7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
Submit
</button>
</div>
<div id="msg-container">
<div id="loading"></div>
<p id="msg"></p>
</div>
</main>
<div class="hr"></div>
<footer>
<p>
Got thoughts or suggestions?
</p>
<a href="https://github.com/f11xter/celebrate/discussions/">
<!-- Icon courtesy of Iconoir -->
<svg width="24px" height="24px" stroke-width="1.5" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M7 12h10M7 8h6" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path
d="M3 20.29V5a2 2 0 012-2h14a2 2 0 012 2v10a2 2 0 01-2 2H7.961a2 2 0 00-1.561.75l-2.331 2.914A.6.6 0 013 20.29z"
stroke-width="1.5"></path>
</svg>
Get in touch
</a>
</footer>
</body>
</html>