-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofil.html
77 lines (73 loc) · 2.1 KB
/
profil.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profil</title>
<link href="style/style.css" rel="stylesheet" />
<script type="module" src="js/app.js" defer></script>
</head>
<body>
<h1>ENI - MEMORY - Profil</h1>
<nav class="navbar">
<a id="first" href="index.html">
<p>Accueil</p>
</a>
<a href="inscription.html">
<p>S'inscrire</p>
</a>
<a href="connection.html">
<p>Se connecter</p>
</a>
<a href="profil.html">
<p>Profil</p>
</a>
<a href="jouer.html">
<p>Jouer</p>
</a>
</nav>
<form method="post" class="formulaire">
<h2>Profil</h2>
<label for="">Nom d'utilisateur</label>
<input type="text" id="nameuser" value="">
<label for="">Entrez votre email</label>
<input type="email" id="email" value="">
<p>Choix du Memory</p>
<select>
<option id="legume">fvd</option>
<option id="dinosaures">fvd</option>
<option id="animaux">fvd</option>
<option id="jsp">fvd</option>
</select>
<img alt="memory" src="ressource/dinosaures/memory_detail_dinosaures.png">
<p>Taille du Memory</p>
<select>
<option id="small">4</option>
<option id="medium">6</option>
<option id="large">8</option>
<option id="big">10</option>
</select>
<div>
<button type="submit">Enregistre option</button>
</div>
<p> Derniers Scores :</p>
<table class="mytab">
<th>
<td> Pseudo</td>
</th>
<th>
<td> Score</td>
</th>
<th>
<td> Taille</td>
</th>
<th>
<td> Choix Memory</td>
</th>
<th>
<td> Date</td>
</th>
</table>
</form>
</body>
</html>