summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-08-20 21:57:02 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-08-20 21:57:02 +0200
commitfa05d5ce9b06627a1c1a194fff059ce0cb608c5c (patch)
tree8f47949ee1a760f1bdf983a13693dce472458898
parente28a104ee04da89f839c9714fbd5d26f06c33fd7 (diff)
landing page: add intro; move geolocation below manual input
-rw-r--r--templates/landing_page.html15
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/landing_page.html b/templates/landing_page.html
index b6a28cd..a97f55e 100644
--- a/templates/landing_page.html
+++ b/templates/landing_page.html
@@ -18,9 +18,13 @@
</div>
{% endif %}
<div class="content">
- <div class="geolocation">
- <button id="geolocationsearch">Haltestellen in der Umgebung suchen</button>
- </div>
+ <p>
+ NVM ist ein inoffizieller Abfahrtsmonitor für Nahverkehr in Deutschland
+ und Umgebung. Diese Seite ist ein kostenfreies, privat betriebenes
+ Projekt ohne Verfügbarkeitsgarantie. Alle Angaben ohne Gewähr.
+ </p>
+ </div>
+ <div class="content">
<form action="/find/stop">
<label for="name">Haltestelle:</label>
<input id="name" name="name" required type="text">
@@ -29,6 +33,11 @@
</button>
</form>
</div>
+ <div class="content">
+ <div class="geolocation">
+ <button id="geolocationsearch">Haltestellen in der Umgebung suchen</button>
+ </div>
+ </div>
</div>
</body>
</html>