furmeet-geoquery/backend_code/cached/search.html

31 lines
838 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GeoQuery</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
</head>
<body>
<header>
<h1>GeoQuery</h1>
</header>
<main>
<form method="POST" action="/query">
<input type="text" name="place" placeholder="somewhere">
<input type="hidden" name="human_readable" value="1234">
<button type="submit">Search</button>
</form>
<p>Type the name of a city and get its geolocated coordinates.</p>
</main>
<footer>
<a href="https://simplemaps.com/data/world-cities">Data by simplemaps</a>
|
<a href="/autocomplete.json">JSON for autocompleting</a>
|
<a href="/routes">Site routes</a>
</footer>
</body>
</html>