-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplayPatWindow.html
51 lines (37 loc) · 1.47 KB
/
displayPatWindow.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> Plateforme de Gestion de Randez-vous</title>
<script type="text/javascript" src="./contents/jquery/jquery-3.4.1.min.js"></script>
<script src="./contents/bootstrap/js/bootstrap.min.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="./contents/bootstrap//css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="style.css">
<style>
</style>
</head>
<body >
<div>
<h1> <center> Liste des patients </center></h1>
<br>
<br>
<div class="container" id="patientsList"> </div>
<table class="table table-striped" id="tablepat" border="1">
<tr>
<th scope="col">Nom </th>
<th scope="col">Prénom</th>
<th scope="col">Date de Naissance</th>
<th scope="col">N° Téléphone </th>
<th scope="col">Adresse Mail</th>
<th scope="col">Informations</th>
<th scope="col">Ajouter un RDV</th>
<th scope="col">Afficher la liste des RDV</th>
</tr>
</table>
</div>
<script>window.$ = window.jQuery = require('jquery');</script>
<script src="./displayPatRenderer.js">
</script>
</body>
</html>