-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshowRdvWindow.html
31 lines (29 loc) · 954 Bytes
/
showRdvWindow.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> Afficher les rendez-vous d'un patient</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" href="./style.css" />
</head>
<body>
<br>
<br>
<div class="container" id="rdvListPat"> </div>
<table class="table table-striped" id="tableRdvPat" border="1" >
<thead>
<tr>
<th scope="col">Nom du patient</th>
<th scope="col">Prenom du patient</th>
<th scope="col">Date</th>
<th scope="col">Heure</th>
<th scope="col">Objet</th>
</tr>
</thead>
</table>
<script src="./showRdvWindow.js"></script>
</body>
</html>