-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (72 loc) · 3.12 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Watchlist | Screen.io</title>
<link rel="stylesheet" href="./assets/css/style.scss">
<link rel="shortcut icon" href="./assets/img/Favicon.png" type="image/x-icon">
</head>
<body>
<header class="header">
<div>
<img class="header__logo" src="./assets/img/Logo-Watch-Io.png" alt="Logo Watch.io">
</div>
<nav class="menu-principal">
<ul class="menu-principal__liens">
<li class="lien-navigation">
<a class="lien-navigation__a" href="./index.html">Ma Watchlist</a>
</li>
<li class="lien-navigation">
<a href="./recherche.html" class="bouton bouton--behind lien-navigation__a">Rechercher</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Votre watchlist</h1>
<p>Consultez la liste des films que vous souhaitez regardez ou ajoutez en de nouveaux.</p>
</section>
<section class="gestion-tableau">
<article>
<select name="choix-filtres" id="choix-filtres" class="choix-filtres">
<option disabled selected>Trier par</option>
<option data-methode-tri="asc" data-bouton-vise="name">Titre (Ordre Ascendant)</option>
<option data-methode-tri="desc" data-bouton-vise="name">Titre (Ordre Descendant)</option>
<option data-methode-tri="asc" data-bouton-vise="years">Année (Ordre Ascendant)</option>
<option data-methode-tri="desc" data-bouton-vise="years">Année (Ordre Descendant)</option>
<option data-methode-tri="asc" data-bouton-vise="authors">Réalisateur (Ordre Ascendant)</option>
<option data-methode-tri="desc" data-bouton-vise="authors">Réalisateur (Ordre Descendant)</option>
</select>
</article>
<article class="ajout-film">
<button class="bouton" id="bouton-ajout-film">
Ajouter un film à votre liste
</button>
</article>
</section>
<section class="table-container">
<table class="data-table">
<thead>
<tr>
<th>
<button id="name">Titre</button>
</th>
<th>
<button id="years">Année</button>
</th>
<th>
<button id="authors">Réalisateur</button>
</th>
<th></th>
</tr>
</thead>
<tbody id="table-content"></tbody>
</table>
</section>
</main>
<script src="./assets/js/index.js"></script>
</body>
</html>