-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexyams.html
More file actions
52 lines (49 loc) · 1.22 KB
/
Copy pathindexyams.html
File metadata and controls
52 lines (49 loc) · 1.22 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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Jeu de Yam's - Jeu</title>
<meta charset="utf-8">
<link rel="stylesheet" href="CSS/yamsstyle.css">
</head>
<body>
<header>
<div class="menuyamsheader">
<h3>Menu</h3>
<a href="menu_principal.html">
<button>Menu Principal</button>
</a>
<a href="score_final.html">
<button>Voir les scores finaux</button>
</a>
</div>
<div class="jeuyamsheader">
<h1>Jeu de Yam's</h1>
<label>Nom de votre fichier json: </label>
<input type="text" id="nomjson">
<button id="search-button">Rechercher</button>
<h3>Joueurs présents:</h3>
<div id="players-list"></div>
</div>
</header>
<main>
<div class="showGame">
<div class="buttons">
<button class="goBack">
<div>
<img src="Images/backarrow.png" alt="arrow back">
</div>
</button>
<button class="goForward">
<div>
<img src="Images/frontarrow.png" alt="arrow forward">
</div>
</button>
</div>
<div id="game-show"></div>
<div id="player-games" class="playerGames"></div>
</div>
</main>
<script src="JS/fetch_players.js"></script>
<script src="JS/fetch_game.js"></script>
</body>
</html>