-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscores.html
More file actions
60 lines (52 loc) · 1.41 KB
/
scores.html
File metadata and controls
60 lines (52 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Club A</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</head>
<body>
<div id="Titre">
<h1>Bienvenue sur le Club A !</h1>
</div>
<div id="connexion">
<a href="connexion.html">Se déconnecter</a>
<a href="connexion.html">Mon compte</a>
</div>
<div id="divMenu">
<ul id="menu">
<li><a href="accueil.html">Accueil</a></li>
<li><a href="news.html">News</a></li>
<li><a href="seances.html">Calendrier</a></li>
<li><a href="streaming.html">Streaming</a></li>
<li><a href="archive.html">Archives</a></li>
<li><a href="bai.html">Boite à idées</a></li>
<li><a href="scores.html">Scores/Classements</a></li>
<li><a href="dons.html">Dons</a></li>
<li><a href="sponsor.html">Devenez Sponsor !</a></li>
</ul>
</div>
<div id="main">
Choix données :
<select>
<option>Scores</option>
<option>Classement</option>
</select>
<br/>
Choix tri :
<select>
<option>Dernières données</option>
<option>Ordre croissant</option>
<option>Ordre decroissant</option>
</select>
<br/>
Date début <INPUT type="text" name="nom" value="" size="5">
<br/>
Date fin <INPUT type="text" name="nom" value="" size="5">
<br/>
Comparer avec <INPUT type="text" name="nom" value="" size="5">
<br/>
<br/>
<button onclick="self.location.href='affichageScores.html'">Valider</button>
</div>
</body>
</html>