-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (101 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alien Clicker</title>
<link
rel="icon"
href="src/images/favicon/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
href="src/images/favicon/favicon.svg"
type="image/svg+xml"
/>
<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=Roboto:wght@100;400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/css/normalize.css" />
<link rel="stylesheet" href="src/css/animations.css" />
<link rel="stylesheet" href="src/css/base.css" />
<link rel="stylesheet" href="src/css/utils.css" />
<link rel="stylesheet" href="src/css/typography.css" />
<link rel="stylesheet" href="src/css/components/form.css" />
<link rel="stylesheet" href="src/css/components/btn.css" />
<link rel="stylesheet" href="src/css/layout/registration.css" />
<link rel="stylesheet" href="src/css/layout/game.css" />
<link rel="stylesheet" href="src/css/layout/progress.css" />
</head>
<body>
<main class="main">
<section class="registration">
<form class="registration__form form">
<h3 class="heading">Create User</h3>
<div class="form__field">
<input
class="form__input"
type="text"
id="username"
placeholder="Username"
/>
<label class="form__label" for="username">Username</label>
<span class="form__field-error">Error</span>
</div>
<div class="form__field">
<input
class="form__input"
type="text"
id="email"
placeholder="Email"
/>
<label class="form__label" for="email">Email</label>
<span class="form__field-error">Error</span>
</div>
<button class="btn u-center" type="submit">Create</button>
</form>
</section>
<section class="game u-hidden">
<div class="game__info">
<ul class="game__list">
<li class="game__info-item">
Username: <span class="username-caption">-</span>
</li>
<li class="game__info-item">
Score: <span class="score-caption">0</span>
</li>
<li class="game__info-item">
Points: <span class="points-caption">0</span>
</li>
<li class="game__info-item">
Level: <span class="level-caption">1</span>
</li>
</ul>
</div>
<div class="game__space">
<button type="button" class="game__rival">
<img
class="game__rival-image"
src="src/images/rivals/rival-1.png"
/>
</button>
</div>
</section>
<section class="progress u-hidden">
<div class="progress__content">
<h4 class="progress__title heading">Great job!</h4>
<div class="progress__message"></div>
<button class="progress__btn btn u-center"></button>
</div>
</section>
</main>
<div class="cursor"></div>
<script src="src/js/form-validation.js" type="module"></script>
<script src="src/js/script.js" type="module"></script>
</body>
</html>