-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
30 lines (29 loc) · 971 Bytes
/
admin.php
File metadata and controls
30 lines (29 loc) · 971 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
<?php
require_once("utils/loader.php");
?>
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>Code Bar - Administration</TITLE>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/admin.css">
<meta name = "viewport" content = "width = 320,initial-scale = 1, user-scalable = no">
</HEAD>
<BODY>
<div id="header">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="#">CodeBar <span id="waitingCommand"> - <span id="waitingCommandCount"> <span id="actualNumberOfWaitingCommands">0</span> commandes en attente</span></a>
<ul class="nav">
<li class="active"><a href="#">Commandes</a></li>
</ul>
</div>
</div>
</div>
<div id="content" class="container">
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/admin.js"></script>
<script src="js/bootstrap.min.js"></script>
</BODY>
</HTML>