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.
37 lines
871 B
37 lines
871 B
<!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>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div>
|
|
<p>Please enter a Latitude and Longitude</p>
|
|
</div>
|
|
</header>
|
|
<section>
|
|
<form action="#" target="_self" method="get">
|
|
<div>
|
|
<label for="latitude">Latitude:</label>
|
|
<input type="number" name="latitude" id="latitude" />
|
|
</div>
|
|
<div>
|
|
<label for="longitude">Longitude:</label>
|
|
<input type="number" name="longitude" id="longitude" />
|
|
</div>
|
|
<div>
|
|
<input type="submit" value="Submit">
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<section>
|
|
<div>Results:</div>
|
|
<div id="results"></div>
|
|
</section>
|
|
<footer>
|
|
<p>Copyright 2019 - Rick Hays, All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|