Moved Javascript, added SCSS and CSS files for a basic look.
Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
56
index.php
Normal file
56
index.php
Normal file
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
opcache_reset();
|
||||
// apc_clear_cache();
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||
<title>Input Screen</title>
|
||||
<link rel="stylesheet" href="css/system.css">
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
|
||||
<script src="js/utils.js"></script>
|
||||
<script src="js/system.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div>
|
||||
<p>Please enter a Latitude and Longitude</p>
|
||||
</div>
|
||||
</header>
|
||||
<section>
|
||||
<form action="" method="get">
|
||||
<div id="latitude_error"></div>
|
||||
<div id="latitute_input">
|
||||
<div id="latitute_input_label">
|
||||
<label for="latitude">Latitude: </label>
|
||||
</div>
|
||||
<div id="latitute_input_text">
|
||||
<input type="text" name="latitude" id="latitude" />
|
||||
</div>
|
||||
</div>
|
||||
<div id="longitude_error"></div>
|
||||
<div id="longitude_input">
|
||||
<div id="longitude_input_label">
|
||||
<label for="longitude">Longitude: </label>
|
||||
</div>
|
||||
<div id="longitude_input_text">
|
||||
<input type="text" name="longitude" id="longitude" />
|
||||
</div>
|
||||
</div>
|
||||
<div id="submit_button" class="clear">
|
||||
<input type="button" onClick="submitForm()" value=" Save ">
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<section>
|
||||
<div id="result_header">Results:</div>
|
||||
<div id="results"></div>
|
||||
</section>
|
||||
<footer>
|
||||
<p>Copyright 2019 - Rick Hays, All rights reserved.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user