-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
137 lines (132 loc) · 3.16 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style/login.css" />
<title>SpinIt! - Inscription</title>
</head>
<body>
<header class="shadow">
<div class="shadow header-wrapper">
<img src="assets/icons/Burger.svg" class="menu-icon burger" />
<a href="index.html" aria-label="Accueil" class="logo"
><picture>
<source
srcset="assets/icons/SpinIn-Mobile.svg"
media="(max-width:600px)"
/>
<img src="assets/icons/SpintIt-lineson.svg" alt="Logo de SpinIt!" />
</picture>
</a>
<form>
<input
type="text"
placeholder="recherche..."
name="search"
aria-label="Barre de recherche"
/>
<div id="search-filters">
<ul>
<li>
<input
type="checkbox"
id="artists"
name="artists"
value="artists"
/><label for="artists">Artistes</label>
</li>
<li>
<input
type="checkbox"
id="albums"
name="albums"
value="albums"
/><label for="albums">Albums</label>
</li>
<li>
<input
type="checkbox"
id="songs"
name="songs"
value="songs"
/><label for="songs">Morceaux</label>
</li>
</ul>
</div>
</form>
<div class="menus">
<img
src="assets/icons/Magnifier.svg"
aria-label="Barre de recherche"
class="menu-icon search-icon"
/>
<a
href="#"
class="notification-menu"
aria-label="Menu des notifications"
><img src="assets/icons/Notification-bell.svg" class="menu-icon"
/></a>
<a href="login.html" class="account-menu" aria-label="Menu du compte"
><img src="assets/icons/User.svg" class="menu-icon"
/></a>
</div>
</div>
<nav>
<ul>
<li><a href="#">Populaires</a></li>
<li><a href="#">Récent</a></li>
<li><a href="#">Artistes</a></li>
<li><a href="#">Albums</a></li>
<li><a href="#">Communauté</a></li>
</ul>
</nav>
</header>
<main class="shadow">
<form>
<fieldset class="shadow">
<label for="pseudo">Pseudo:</label>
<input
type="text"
id="username"
name="username"
placeholder="pseudonyme"
required
aria-required="true"
/>
<label for="email">Adresse email:</label>
<input
type="email"
id="email"
name="email"
placeholder="[email protected]"
required
aria-required="true"
/>
<label for="password">Mot de passe:</label>
<input
type="password"
id="password"
name="password"
placeholder="motdepasse"
required
aria-required="true"
/>
<label for="confirm-password">Confirmez votre mot de passe:</label>
<input
type="password"
id="confirm-password"
name="confirm-password"
placeholder="motdepasse"
required
aria-required="true"
/>
<button type="submit">Connexion</button>
</fieldset>
</form>
</main>
<footer>
<div class="lines"></div>
</footer>
</body>
</html>