summaryrefslogtreecommitdiff
path: root/intern.gospeladlershof.de/proben.php
diff options
context:
space:
mode:
authorHorus32016-09-28 14:43:44 +0200
committerHorus32016-09-28 14:43:44 +0200
commit6decb91aa4cc27c83c866d1b128dc719aeb1c986 (patch)
tree477a08f5296bbf4ab75b53893b25f900b6e0ad8f /intern.gospeladlershof.de/proben.php
parent4c39424720d6be708896f42b73a93df3c2637a10 (diff)
parent006da29841a225675fc7dc4981b69336409737e1 (diff)
downloadgospeladlershof.de-6decb91aa4cc27c83c866d1b128dc719aeb1c986.tar.gz
Merge branch 'master' of git.iamfabulous.de:gospeladlershof.de
Diffstat (limited to 'intern.gospeladlershof.de/proben.php')
-rw-r--r--intern.gospeladlershof.de/proben.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/intern.gospeladlershof.de/proben.php b/intern.gospeladlershof.de/proben.php
new file mode 100644
index 0000000..5606d4e
--- /dev/null
+++ b/intern.gospeladlershof.de/proben.php
@@ -0,0 +1,51 @@
+<?php
+$title = "Neue Probe";
+$class_proben= 'class="active"';
+$class_index= '';
+$class_konzert= '';
+
+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';
+?>