-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainWindow.html
More file actions
45 lines (36 loc) · 1.28 KB
/
mainWindow.html
File metadata and controls
45 lines (36 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title> Plateforme de Gestion de Rendez-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>
body {
background-image: url("./img/healthcare.jpg");
background-size: cover;
background-repeat: no-repeat;
background-color: #cccccc;
}
</style>
</head>
<body>
<h1 > <center> Mes rendez-vous pour aujourd'hui </center> </h1>
<br>
<br>
<div class="container" id="CurrentDayList"> </div>
<table class="table table-hover table-striped table-bordered" id="tableCurrentDay" border="1">
<tr>
<th scope="col">Nom du patient</th>
<th scope="col">Prénom du patient</th>
<th scope="col">Date</th>
<th scope="col">Heure</th>
<th scope="col">Objet</th>
</tr>
</table>
<script src="./renderer.js"></script>
</body>
</html>