diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2021-08-20 21:57:02 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2021-08-20 21:57:02 +0200 | 
| commit | fa05d5ce9b06627a1c1a194fff059ce0cb608c5c (patch) | |
| tree | 8f47949ee1a760f1bdf983a13693dce472458898 /templates | |
| parent | e28a104ee04da89f839c9714fbd5d26f06c33fd7 (diff) | |
landing page: add intro; move geolocation below manual input
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/landing_page.html | 15 | 
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> | 
