blob: 063b49c433ddb8389df0c3ea6616ceb070294866 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<!DOCTYPE html>
<html lang="de">
<head>
<title>{{ title }}</title>
{% include 'header.html' %}
<script src="/static/v6/js/geolocation.js"></script>
</head>
<body>
{% include 'navbar.html' %}
<div class="container">
{% if error %}
<div class="content">
<div class="error">
<strong>{{ error["lead"] }}</strong>
{{ error["body"] }}
<div class="errcode">{{ error["code"] }}</div>
</div>
</div>
{% endif %}
<div class="textcontent">
<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="textcontent">
<form action="/find/stop">
<div><input id="name" name="name" required type="text" placeholder="Haltestelle eingeben"></div>
<div>
<button type="submit" name="action" value="departures">
Abfahrtsmonitor
</button>
</div>
</form>
</div>
<div class="textcontent">
<div class="geolocation">
<button id="geolocationsearch">Haltestellen in der Umgebung suchen</button>
</div>
</div>
</div>
{% include 'footer.html' %}
</body>
</html>
|