forked from websense/websense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
administration.php
48 lines (47 loc) · 1.05 KB
/
administration.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* This page allows to add sensors, locations etc. to the database.
*
* @package main
*/
require 'settings.php';
require 'localization.php';
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="script/jqueryui/jquery-ui-1.8.21.custom.css">
<link rel="stylesheet" href="simplestyle.css">
<script src="localization_client.php"></script>
<script src="script/jquery-1.7.2.min.js"></script>
<script src="script/jqueryui/jquery-ui-1.8.21.custom.min.js"></script>
<script src="script/change_locale.js"></script>
<title><?php echo $messages['banner.navigation.administration'] ?></title>
</head>
<body>
<!-- Page header -->
<?php
require 'banner.php';
?>
<form method="post" action="addNode.php">
<fieldset>
<legend>
Add Nodes
</legend>
<input type="submit" />
</fieldset>
</form>
<form method="post">
<fieldset>
<legend>
Remove Nodes
</legend>
<?php
// TODO list all nodes here
?>
<input type="submit" />
</fieldset>
</form>
</body>
</html>