-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cours Microservices</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body onload="loading()">
<div class="container">
<div id="grid_logo">
<img src="logopythonjs.png" alt="logo python js">
</div>
<div id="grid_titre">
<h2>Démonstration cours python/javascript</h2>
</div>
<div id="grid_categories">
<h3>Les catégories</h3>
<table id="table_categories">
<thead>
<tr>
<th>Code</th>
<th>Libellé</th>
<th>Filtrer</th>
</tr>
</thead>
<tbody id="table_categories_tbody">
</tbody>
</table>
</div>
<div id="grid_trucs">
<h3>Les trucs</h3>
<table id="table_trucs">
<thead>
<tr>
<th>Code</th>
<th>Libellé</th>
<th>Catégorie</th>
<th>Action</th>
</tr>
</thead>
<tbody id="table_trucs_tbody">
</tbody>
</table>
</div>
<div id="grid_add_truc">
<h3>Ajouter un truc</h3>
<form>
<label>Libellé</label>
<input type="text" id="truc_libelle"/>
<label>Catégorie</label>
<select id="truc_categorie"></select>
<button onclick="clicAjouter()">Ajouter</button>
</form>
</div>
<div id="grid_footer">
<h5>amedassi@lasalle63.fr</h5>
</div>
</div>
<script src="script.js"></script>
</body>
</html>