-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (118 loc) · 5.19 KB
/
index.html
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/wizard.css">
<!--<script src="js/vendor/jquery-1.11.2.min.js"></script>-->
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<!-- <script src="js/wizard.js" type="text/javascript"></script> -->
<div class="container">
<div class="container">
<div class="stepwizard">
<div class="stepwizard-row setup-panel">
<div class="stepwizard-step">
<a href="#step-1" type="button" class="btn btn-primary btn-circle">1</a>
<p>Basisdaten</p>
</div>
<div class="stepwizard-step">
<a href="#step-2" type="button" class="btn btn-default btn-circle" disabled="disabled">2</a>
<p>Fahrzeug</p>
</div>
<div class="stepwizard-step">
<a href="#step-3" type="button" class="btn btn-default btn-circle" disabled="disabled">3</a>
<p>Zusammenfassung</p>
</div>
</div>
</div>
<form role="form">
<div class="row setup-content" id="step-1">
<div class="col-xs-12">
<div class="col-md-12">
<h3> Abteilung</h3>
<div class="form-group">
<label class="control-label">Abteilungsname</label>
<input maxlength="100" type="text" required="required" class="form-control" placeholder="Bitte Abteilungsnamen eingeben" name="abtname" />
</div>
<div class="form-group">
<label class="control-label">Monat</label>
<select required="required" class="form-control" placeholder="Enter Last Name" name="monat"/>
<option>Januar</option>
<option>Februar</option>
<option>März</option>
<option>April</option>
<option>Mai</option>
<option>Juni</option>
<option>Juli</option>
<option>August</option>
<option>September</option>
<option>Oktober</option>
<option>November</option>
<option>Dezember</option>
</select>
</div>
<div class="form-group">
<label class="control-label">Fahrzeugverantwortliche*r</label>
<input maxlength="100" type="text" required="required" class="form-control" placeholder="Bitte Namen eintragen" name="fahrzeugva" />
</div>
<button class="btn btn-primary nextBtn btn-lg pull-right" type="button">Nächster Schritt</button>
</div>
</div>
</div>
<div class="row setup-content" id="step-2">
<div class="col-xs-12">
<div class="col-md-12">
<h3>Fahrzeug(e)</h3>
<div class="car">
<h4>Fahrzeug 1</h4>
<div class="form-group">
<label class="control-label">Kennzeichen</label>
<input maxlength="200" type="text" required="required" class="form-control" placeholder="Fahrzeugkennzeichen eingeben" />
</div>
<div class="form-group">
<label class="control-label">km-Stand Beginn</label>
<input maxlength="200" type="text" required="required" class="form-control" placeholder="Kilometerstand zu Monatsanfang" />
</div>
<div class="form-group">
<label class="control-label">km-Stand Ende</label>
<input maxlength="200" type="text" required="required" class="form-control" placeholder="Kilometerstand zu Monatsende" />
</div>
<div class="form-group">
<label class="control-label">Wagenpflege</label>
<input name="wagenpflege" value="wagenpflege" type="checkbox">durchgeführt
</div>
</div>
<button class="btn btn-success newVhclBtn btn-lg" type="button">Weiteres Fahrzeug</button>
<button class="btn btn-warning removeVehicle btn-lg" type="button">Fahrzeug entfernen</button>
<button class="btn btn-primary nextBtn btn-lg pull-right" type="button">Nächster Schritt</button>
</div>
</div>
</div>
<div class="row setup-content" id="step-3">
<div class="col-xs-12">
<div class="col-md-12">
<h3> Zusammenfassung</h3>
<button class="btn btn-success btn-lg pull-right" type="submit">Abschließen!</button>
</div>
</div>
</div>
</form>
</div>
</div>
<script async src="js/app.js"></script>
</body>
</html>