-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
233 lines (222 loc) · 7.07 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sudoku Game</title>
<link rel="icon" href="./images/favicon.png" />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&family=Spartan:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/5225b7dab1.js"
crossorigin="anonymous"
></script>
<!-- Styles from the bttn library -->
<link rel="stylesheet" href="./css/bttn.min.css" />
<!-- The compiled CSS file from SCSS -->
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<main class="main">
<!-- Site logo -->
<a href="/">
<h1 class="heading--primary">Sudoku</h1>
</a>
<!-- Login screen -->
<section class="login" id="login">
<div class="container login__container">
<h2 class="login__heading heading--secondary">
Log in to start the game
</h2>
<form class="form">
<input
class="form__input"
type="email"
name="email"
placeholder="Email Address"
required
/>
<input
class="form__input"
type="password"
name="password"
placeholder="Password"
required
/>
<button type="submit" class="button bttn bttn-primary bttn-fill">
Enter
</button>
</form>
<p class="login__switch">
Don't have an account yet?
<button
class="button bttn bttn-primary bttn-unite"
id="signup-switch"
>
Sign Up
</button>
</p>
</div>
</section>
<!-- Signup screen -->
<section class="signup" id="signup">
<div class="container login__container">
<h2 class="login__heading heading--secondary">Sign Up</h2>
<form class="form">
<input
class="form__input"
type="text"
name="name"
placeholder="Name"
required
maxlength="15"
/>
<input
class="form__input"
type="email"
name="email"
placeholder="Email Address"
required
/>
<input
class="form__input"
type="password"
name="password"
placeholder="Password"
required
minlength="6"
/>
<input
class="form__input"
type="password"
name="confirmPassword"
placeholder="Confirm Password"
required
minlength="6"
/>
<button type="submit" class="button bttn bttn-primary bttn-fill">
Register
</button>
</form>
<p class="login__switch">
Already have an account?
<button
class="button bttn bttn-primary bttn-unite"
id="login-switch"
>
Log in
</button>
</p>
</div>
</section>
<!-- Level choice screen -->
<section class="level-choice" id="level-choice">
<div class="container level-choice__container">
<h2 class="level-choice__heading heading--secondary">
Hello, <span id="username"></span>
</h2>
<div class="level-choice__content">
<h3 class="level-choice__subheading">Pick a level:</h3>
<div class="level-choice__buttons">
<button class="button bttn bttn-primary bttn-pill button--level">
1
</button>
<button class="button bttn bttn-primary bttn-pill button--level">
2
</button>
<button class="button bttn bttn-primary bttn-pill button--level">
3
</button>
</div>
</div>
</div>
</section>
<!-- Game screen with the sudoku board -->
<section id="game">
<div class="container game__container">
<h2 class="game__heading heading--secondary">
Level: <span id="level"></span>
</h2>
<div class="board">
<!-- The board's inner elements are created with JS -->
</div>
<div class="game__buttons">
<button
class="button bttn bttn-primary bttn-fill"
id="finish-button"
>
Finish
</button>
<button
class="button bttn bttn-primary bttn-unite"
id="reset-button"
>
Again
</button>
</div>
</div>
</section>
</main>
<!-- Result modal shown when the game is finished -->
<div class="modal" id="result">
<div class="modal__content">
<h2 class="modal__heading heading--secondary" id="result-title"></h2>
<button
class="button bttn bttn-primary bttn-unite modal__button"
id="restart-button"
>
Play Again
</button>
</div>
</div>
<!-- Score box -->
<div class="score-box" id="score-box">
<div class="score-box__main">
<h4 class="score-box__title">Score</h4>
<span class="score-box__score" id="score"></span>
</div>
<div class="score-box__username">
<i class="fas fa-user"></i>
<span id="scorebox-username"></span>
</div>
</div>
<!-- Logout button -->
<button class="button button--logout" id="logout-button">
<i class="fas fa-sign-out-alt"></i>
</button>
<!-- Spinner -->
<div class="spinner">
<div class="lds-default">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Site footer -->
<footer class="footer">
<div class="footer__container">
<div class="footer__line"></div>
<p class="footer__text">Copyright © 2020 Yinon Hever</p>
<div class="footer__line"></div>
</div>
</footer>
<noscript>You need to enable JavaScript to use this app.</noscript>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.0/axios.min.js"
integrity="sha512-DZqqY3PiOvTP9HkjIWgjO6ouCbq+dxqWoJZ/Q+zPYNHmlnI2dQnbJ5bxAHpAMw+LXRm4D72EIRXzvcHQtE8/VQ=="
crossorigin="anonymous"
></script>
<script type="module" src="./js/index.js"></script>
</body>
</html>