-
Notifications
You must be signed in to change notification settings - Fork 0
/
preferences.html
127 lines (122 loc) · 3.06 KB
/
preferences.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style/preferences.css" />
<title>SpinIt! - Profil</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>
<section>
<h2>Préférences</h2>
<div class="preferences-wrapper">
<div class="avatar-wrapper">
<img src="https://picsum.photos/250/250" alt="" />
<form>
<label for="avatar"
>Changer votre photo de profil: (.jpg ou .png, 250x250)</label
>
<input
type="file"
id="avatar"
name="avatar"
accept="image/png,
image/jpeg"
/>
</form>
</div>
<form class="bio-wrapper">
<label for="bio"
>A propos de vous: (ceci apparaitra sur votre profil, supporte le
markdown)</label
>
<textarea id="bio" name="bio" col="500" rows="10"></textarea>
</form>
</div>
</section>
<section class="dangerous">
<button id="delete-account">Supprimer mon compte</button>
<button id="data-claim">Réclamer mes données</button>
</section>
</main>
<footer>
<div class="lines"></div>
</footer>
</body>
</html>