You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
<!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: </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=" 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>
|