-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 2.62 KB
/
Copy pathindex.html
File metadata and controls
83 lines (79 loc) · 2.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="fr">
<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">
<link rel="stylesheet" href="css/bulma.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<title>MysteriousNumber</title>
</head>
<body class="has-text-centered">
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<div id="runDivBtn" class="none">
<div id="btnsRun">
<h1>Choissisez votre niveau de difficulté</h1>
<br>
<div class="columns">
<div class="column">
<button class="button is-link is-info is-light" id="easy">Facile</button>
</div>
<div class="column">
<button class="button is-link is-success is-light" id="medium">Moyen</button>
</div>
<div class="column">
<button class="button is-link is-warning is-light" id="hard">Difficile</button>
</div>
<div class="column">
<button class="button is-link is-danger is-light" id="impossible">Impossible</button>
</div>
</div>
</div>
<div id="runDiv" class="none">
<span id="result"></span>
<label id="lblNumber" for="number">Entrez un nombre en 1 & 99 :</label>
<input type="number" name="number" id="inputNumber" placeholder="1">
<input class="name" type="text" name="inputName" minlength="2" maxlength="30" id="inputName" placeholder="Entrez votre nom">
</div>
</div>
<div id="scoreBy" class="none">
<input type="text" id="inputSearch" placeholder="Pseudo du joueur">
</div>
<table id="table" class="table is-bordered">
<thead>
<tr>
<th>Username</th>
<th>Score</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
</div>
</div>
<div class="hero-foot">
<section class="section is-fixed-bottom">
<div class="has-text-centered is-centered">
<div class="columns">
<div class="column">
<button class="button is-link is-light" id="run">Lancer une partie</button>
</div>
<div class="column">
<button class="button is-link is-light" id="scores">Scores</button>
</div>
<div class="column">
<button class="button is-link is-light" id="reset">Réinitialiser les scores</button>
</div>
<div class="column">
<button class="button is-link is-light" id="score-by">Rechercher un score</button>
</div>
</div>
</div>
</section>
</div>
</section>
<script type="module" src="js/main.js"></script>
</body>
</html>