diff options
| author | user <user@node5.net> | 2024-05-20 19:51:41 +0200 |
|---|---|---|
| committer | user <user@node5.net> | 2024-05-20 19:51:41 +0200 |
| commit | f0626b175d21230dc68ecd83e2726ec7e7daae5a (patch) | |
| tree | bee47010f3374fd53395f62a9067f4e41762c000 /src/templates/options.html | |
| parent | 4c03c8e4514d40dff2a3736c7f04a89a7e21843a (diff) | |
user input categories, refactor, remove zombie code
Diffstat (limited to 'src/templates/options.html')
| -rw-r--r-- | src/templates/options.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/templates/options.html b/src/templates/options.html new file mode 100644 index 0000000..8f2d43a --- /dev/null +++ b/src/templates/options.html @@ -0,0 +1,21 @@ +<h1>POI map</h1> +<form> + <label for="Category" class="form-label"><h3>Category</h3></label> + <input class="form-control" list="CategoriesDataList" id="Category" name="Category" placeholder="Type to search..." + aria-describedby="CategoriesHelp" value=""> {# Value set to empty string is important for JS function #} + <datalist id="CategoriesDataList"> + + </datalist> + <div id="CategoriesHelp" class="form-text">Change the category shown on the map<br> + e.g. <code>supermarket</code>, <code>toilet</code>, or <code>swingerclub</code></div> + + <br> + + <button type="submit" class="btn btn-primary">Run query</button> + + <br><br> + + Read more, and find the source code here: <a href="https://git.node5.net/poi_map/about/">POI map - git.node5.net</a> + +</form> + |
