-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
81 lines (81 loc) · 2.37 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Spelling Coach</title>
<link rel="stylesheet" href="./popup.css" />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app">
<div class="app-header">
<div class="bar-graph-container" id="statsButton">
<img
src="./images/graph.svg"
alt="bar-graph icon"
class="bar-graph-icon"
/>
</div>
<h1>Spelling Coach</h1>
</div>
<div class="app-body">
<div class="body-sub sub-left">
<div class="sub-title">Add Word</div>
<div class="add-word-form">
<div class="add-word-button" id="addWordButton">+</div>
<input type="text" id="addWordInput" />
</div>
</div>
<div class="body-sub sub-right">
<div class="sub-title">Word List</div>
<div class="word-list" id="wordList"></div>
</div>
</div>
<div class="app-bottom">
<div id="currentWord"></div>
<input type="text" id="practiceInput" />
</div>
<div class="signature">
<span>
Made with
<img
src="./images/heart.svg"
alt="heart icon"
style="width: 10px; height: 10px;"
/>
by
<a href="https://twitter.com/_ianlowe" target="_blank">Ian Lowe.</a>
</span>
<p>
If this app has been useful to you, please consider
<a href="https://buymeacoff.ee/ianlowe" target="=" _blank
>buying me a coffee!</a
>
</p>
</div>
</div>
<div class="stats-popup" id="statsPopup">
<div class="stats-popup-container">
<div class="close-button-icon-container">
<img
src="./images/close.svg"
alt="close-button icon"
id="modalCloseButton"
class="close-button-icon"
/>
</div>
<div class="stats-popup-header">
<h2>Correct Spellings</h2>
</div>
<div class="stats-popup-body">
<ul id="wordScoreList" class="word-score-list"></ul>
<ul id="numScoreList" class="num-score-list"></ul>
</div>
</div>
</div>
<div id="overlay" class="overlay"></div>
<script src="popup.js"></script>
</body>
</html>