-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (27 loc) · 728 Bytes
/
index.php
File metadata and controls
30 lines (27 loc) · 728 Bytes
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
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/bootstrap-confirmation.min.js"></script>
<title>Accueil</title>
</head>
<body>
<div id="navb">
</div>
<div id="panel_a">
</div>
<div id="panel_f">
</div>
<div id="panel_c">
</div>
</body>
</html>
<script>
$(document).ready(function() {
$("#panel_a").load("controller.php?action=accueil");
$("#navb").load("controller.php?action=navb");
});
</script>