forked from km4ack/K4CPO-FD-Logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.php
66 lines (66 loc) · 2.06 KB
/
setup.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
include("include.php");
include("menu-ajax.js");
?>
<html>
<head>
<?PHP
echo "<title>".TITLE."</title>";
?>
<style>
ul {
text-align: left;
}
#header {
background-color:#01DF01;
color:black;
text-align:center;
padding:5px;
}
#nav {
line-height:30px;
background-color:#eeeeee;
height:500px;
width:300px;
float:left;
padding:5px;
}
#section {
width:500px;
float:left;
padding:10px;
}
#footer {
background-color:#01DF01;
color:black;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>
<body>
<div id="header"><h1><?=TITLE ;?> Setup</h1></div>
<div id="nav"><h2>Navagation</h2>
<ul>
<!--<li><a id=w href=# onclick="javascript:ajaxpage('generalsetup.php', 'section');">General Setup</a></li> -->
<li><a id=w href=# onclick="javascript:ajaxpage('bands.php', 'section');">Bands</a></li>
<li><a id=w href=# onclick="javascript:ajaxpage('modes.php', 'section');">Modes</a></li>
<li><a id=w href=# onclick="javascript:ajaxpage('dates.php', 'section');">Edit Field Day year & dates</a></li>
<li><a id=w href=# onclick="javascript:ajaxpage('voices.php', 'section');">Upload Voice Files</a></li>
</ul>Reports<ul>
<li><a id=w href=# onclick="javascript:ajaxpage('reports.php', 'section');">Summary Report</a></li></li>
<li><a id=w href=# onclick="javascript:ajaxpage('list.php', 'section');">Full List</a></li></li>
<li><a id=w href=# onclick="javascript:ajaxpage('adif_form.php', 'section');">ADIF Report</a></li></li>
</ul>Data Base<ul>
<li><a id=w href=# onclick="javascript:ajaxpage('builddb.php', 'section');">Build/Clear DataBase</a></li></li>
</ul>
<br>
<input type=button value ='Back to Index' onclick="window.location.href='index.php'"></button>
</div>
<div id="section"></div>
<br>
<div id="footer">By <a href='mailto:lee.alder@gmail.com'>Lee Alder</a>
</div>
</body>
</html>