-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (78 loc) · 2.4 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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js" defer></script>
</head>
<body>
<header>
<!--h1+nav>ul>li*2>button-->
<h1>Gestion etudiants</h1>
<nav>
<ul>
<li><button>Log in</button></li>
<li><button>Sign up</button></li>
</ul>
</nav>
</header>
<main>
<section class="formSection">
<h2>Form</h2>
<div>
<div>
<div class="ligneForm">
<label for="nomInput">nom:</label>
<input id="nomInput" type="text">
<span></span>
</div>
<div class="ligneForm">
<label for="prenomInput">prenom:</label>
<input id="prenomInput" type="text">
<span></span>
</div>
<div class="ligneForm">
<label for="ageInput">age:</label>
<input id="ageInput" type="number">
<span></span>
</div>
</div>
<div class="controls">
<button id="annulerBtn">annuler</button>
<button disabled id="ajouterBtn">ajouter</button>
</div>
</div>
</section>
<section class="listSection">
<h2>Liste</h2>
<table>
<thead>
<tr>
<th>nom</th>
<th>prenom</th>
<th>age</th>
<th>options</th>
</tr>
</thead>
<tbody id="tbody">
<!--
<tr>
<td>tmimi</td>
<td>mehdi</td>
<td>31</td>
<td>
<button class="delete">X</button>
</td>
</tr>
-->
</tbody>
</table>
</section>
</main>
<footer>
@copyright estf 2023
</footer>
</body>
</html>