blob: 108acea7b3c990c7f65a964a0ea7d453259a99ae (
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
46
47
48
49
50
51
52
53
|
<?php
$title = "Neue Probe";
$class_proben= 'class="active"';
$class_index= '';
$class_konzert= '';
$class_chor= '';
$class_video= '';
require_once __DIR__ . '/header.php';
?>
<form class="form-horizontal" method="POST" action="/code/proben/insert.php">
<fieldset>
<!-- Form Name -->
<legend class="text-center"><h1>Proben</h1></legend>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="termin">Termin</label>
<div class="col-md-4 date datepicker">
<input id="termin" name="termin" type="text" placeholder="01.01.1970" class="form-control input-md" required="">
<span class="help-block">Bitte klicken, es öffnet sich ein Datepicker.</span>
</div>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="uhrzeit">Uhrzeit</label>
<div class="col-md-4">
<input id="uhrzeit" name="uhrzeit" type="text" placeholder="18:30 - 20:00 Uhr" class="form-control input-md" required="" value="18:30 - 20:00 Uhr">
</div>
</div>
<!-- Button (Double) -->
<div class="form-group">
<label class="col-md-4 control-label" for="save"></label>
<div class="col-md-8">
<button id="save" name="save" class="btn btn-success">Speichern</button>
<a href="/"><button type="button" id="Abbrechen" name="Abbrechen" class="btn btn-danger">Abbrechen</button></a>
</div>
</div>
</fieldset>
</form>
</div> <!-- /container -->
<?php
require_once __DIR__ . '/footer.php';
?>
|