-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
27 lines (27 loc) · 816 Bytes
/
index.php
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
<?php
require('check_connected.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html"/>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="script.js"></script>
<script src="script_users.js"></script>
<script src="script_categories.js"></script>
<title>Condor</title>
</head>
<body>
<?php
include_once('header.php');
require_once('nav.php');
?>
<div id="content">
</div>
<div id="loadingDiv"></div>
</body>
</html>