Finish project. Please read the readme.

Signed-off-by: Rick Hays <rhays@haysgang.com>
This commit is contained in:
2019-09-25 21:07:14 -05:00
parent 1c2488c808
commit ec443db999
8 changed files with 183 additions and 15 deletions

54
index.html Normal file
View File

@@ -0,0 +1,54 @@
<!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>
<h2>Find the closest Pharmacy to you</h2>
</div>
</header>
<section>
<div id="request">
<p>Please enter a Latitude and Longitude</p>
</div>
<form action="" method="get">
<div id="latitude_error"></div>
<div id="latitute_input">
<div id="latitute_input_label">
<label for="latitude">Latitude:&nbsp;</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:&nbsp;</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=" Find ">
</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>