Location save request window form now in a table, looks neater and cleaner

pull/73/head
jonsowman 2010-06-19 15:38:08 +01:00
rodzic d043f37133
commit 146385bb8e
1 zmienionych plików z 13 dodań i 5 usunięć

Wyświetl plik

@ -89,11 +89,19 @@ Download data: <a id="dlcsv">CSV <img src="images/csv.gif" border="0" /></a> <a
<div id="location_save" class="box"> <div id="location_save" class="box">
<h1>Request Location Save</h1><br /> <h1>Request Location Save</h1><br />
<form name="location_save_form" id="location_save_form"> <form name="location_save_form" id="location_save_form">
Latitude: <input type="text" name="req_lat" id="req_lat" size="10"><br /> <table name="req_table" id="req_table">
Longitude: <input type="text" name="req_lon" id="req_lon" size="10"><br /> <tr>
Altitude: <input type="text" name="req_alt" id="req_alt" size="10"><br /> <td>Latitude: </td><td><input type="text" name="req_lat" id="req_lat" size="10"></td>
Site Name: <input type="text" name="req_name" id="req_name" size="10"><br /> </tr><tr>
<input type="submit" value="Request" name="submit" id="req_sub_btn"> <td>Longitude: </td><td><input type="text" name="req_lon" id="req_lon" size="10"></td>
</tr><tr>
<td>Altitude: </td><td><input type="text" name="req_alt" id="req_alt" size="10"></td>
</tr><tr>
<td>Site Name: </td><td><input type="text" name="req_name" id="req_name" size="10"></td>
</tr><tr>
<td></td><td><input type="submit" value="Request" name="submit" id="req_sub_btn"></td>
</tr>
</table>
</form><br /> </form><br />
<a id="req_close">Close this window</a> <a id="req_close">Close this window</a>
</div> </div>