-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdistance.html
More file actions
70 lines (67 loc) · 3.48 KB
/
distance.html
File metadata and controls
70 lines (67 loc) · 3.48 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title>Walk the Ward</title>
<!-- Boostrap CSS: Latest compiled and minified CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
</head>
<body id="addDistances">
<div id="wrapperDistance">
<div class="col-xs-12 col-sm-12">
<h1 class="title corner">Walk the Ward - Admin</h1>
</div>
<div class="col-xs-12 col-sm-12 guide informationAdmin">
<p>Välj en station och ange avstånd från den valda stationen till de andra stationerna. Om du exempelvis har valt station 1 ska du ange avståndet "0" på "Distans till station 1", det vill säga distansen till sig själv.
</p>
</div>
<div class="col-xs-12 col-sm-12">
<select id="distance">
<option value="" disabled selected hidden>Välj fråga</option>
</select>
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance1" type="text" placeholder="Distans till station 1" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance2" type="text" placeholder="Distans till station 2" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance3" type="text" placeholder="Distans till station 3" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance4" type="text" placeholder="Distans till station 4" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance5" type="text" placeholder="Distans till station 5" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance6" type="text" placeholder="Distans till station 6" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance7" type="text" placeholder="Distans till station 7" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance8" type="text" placeholder="Distans till station 8" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance9" type="text" placeholder="Distans till station 9" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<input id="distance10" type="text" placeholder="Distans till station 10" class="form smallerText">
</div>
<div class="col-xs-12 col-sm-12">
<button id="saveDistances" class="form">Spara</button>
</div>
<div class="col-xs-12 col-sm-12">
<a href="admin.html" class="form">Tillbaka</a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript" src="underscore-min-1.3.3.js"></script>
<script type="text/javascript" src="backbone-min-0.9.2.js"></script>
<script type="text/javascript" src="https://www.parsecdn.com/js/parse-1.2.3.min.js"></script>
<script src="adminscript.js"></script>
</body>
</html>