tidy location settings
This commit is contained in:
@@ -801,6 +801,13 @@ form#views button .updatenumber {
|
|||||||
.settingstable h2 {
|
.settingstable h2 {
|
||||||
font-size:x-large;
|
font-size:x-large;
|
||||||
}
|
}
|
||||||
|
.plaintable {
|
||||||
|
box-shadow: unset;
|
||||||
|
}
|
||||||
|
.plaintable td {
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
|
|
||||||
.brbanner h1 {
|
.brbanner h1 {
|
||||||
margin:0px;
|
margin:0px;
|
||||||
font-size: xx-large;
|
font-size: xx-large;
|
||||||
|
|||||||
+16
-6
@@ -443,12 +443,22 @@ function runProcess() {
|
|||||||
|
|
||||||
<table class="settingstable"><tr><td>
|
<table class="settingstable"><tr><td>
|
||||||
<h2>Location</h2>
|
<h2>Location</h2>
|
||||||
<label for="site_name">Site Name: </label>
|
<table class="settingstable plaintable">
|
||||||
<input name="site_name" type="text" value="<?php print($config['SITE_NAME']);?>"/> (Optional)<br>
|
<tr>
|
||||||
<label for="latitude">Latitude: </label>
|
<td><label for="site_name">Site Name:</label></td>
|
||||||
<input name="latitude" type="number" max="90" min="-90" step="0.0001" value="<?php print($config['LATITUDE']);?>" required/><br>
|
<td><input name="site_name" type="text" value="<?php print($config['SITE_NAME']);?>"/></td>
|
||||||
<label for="longitude">Longitude: </label>
|
<td>(Optional)</td>
|
||||||
<input name="longitude" type="number" max="180" min="-180" step="0.0001" value="<?php print($config['LONGITUDE']);?>" required/><br>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="latitude">Latitude:</label></td>
|
||||||
|
<td><input name="latitude" type="number" style="width:6em;" max="90" min="-90" step="0.0001" value="<?php print($config['LATITUDE']);?>" required/></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><label for="longitude">Longitude: </label></td>
|
||||||
|
<td><input name="longitude" type="number" style="width:6em;" max="180" min="-180" step="0.0001" value="<?php print($config['LONGITUDE']);?>" required/></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
<p>Set your Latitude and Longitude to 4 decimal places. Get your coordinates <a href="https://latlong.net" target="_blank">here</a>.</p>
|
<p>Set your Latitude and Longitude to 4 decimal places. Get your coordinates <a href="https://latlong.net" target="_blank">here</a>.</p>
|
||||||
</td></tr></table><br>
|
</td></tr></table><br>
|
||||||
<table class="settingstable"><tr><td>
|
<table class="settingstable"><tr><td>
|
||||||
|
|||||||
Reference in New Issue
Block a user