source: trunk/newnode.html@ 413

Last change on this file since 413 was 413, checked in by Kris Deugau, 14 years ago

/trunk

Migrate body colour and font base defs to CSS, make <head>
sections more consistent. See #3.

Look for local.css so admins can override the default
colours. local.css is ignored on the working root as it
should be entirely a local file. See #14.

File size: 1.0 KB
Line 
1<html>
2<head>
3 <title>IP Database - Add new tower/demarc switch</title>
4 <link rel="stylesheet" type="text/css" href="/ip/ipdb.css" />
5 <link rel="stylesheet" type="text/css" href="/ip/local.css" />
6
7 <SCRIPT language="JavaScript" type="text/javascript">
8 <!-- Hide From Non-Supporting Browsers
9 // snagged from http://www.webxpertz.net/forums/showthread.php?t=24650
10 function redoParent() {
11 opener.location.reload(true);
12 }
13
14 // Done Hiding -->
15 </script>
16
17</head>
18
19<body onUnload="redoParent()">
20<table>
21<form action="cgi-bin/newnode.cgi" method="POST">
22<tr class="color1"><td>Enter new AP/switch name/location:</td><td><input name="nodename"></td></tr>
23<tr class="color2"><td>Enter management IP:</td><td><input name="nodeip"></td></tr>
24<tr class="color1"><td>Wifi tower or fibre demarc switch?</td>
25<td><input type=radio name="type" value="bi">Wifi tower<br>
26<input type=radio name="type" value="fr">Fibre demarc
27</td></tr>
28<tr class="color2"><td colspan=2 align=center><input type=submit value="Add"></td></tr>
29</table>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.