diff options
Diffstat (limited to 'static/modal-new-gallery.php')
| -rw-r--r-- | static/modal-new-gallery.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/static/modal-new-gallery.php b/static/modal-new-gallery.php new file mode 100644 index 0000000..cf3f892 --- /dev/null +++ b/static/modal-new-gallery.php @@ -0,0 +1,40 @@ +<!-- Modal --> +<form class="form-horizontal" method="POST" action="<?php echo DOMAIN; ?>?page=action&task=gallery"> +<div class="modal fade" id="modal-new-gallery" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> + <div class="modal-dialog"> + <div class="modal-content"> + <div class="modal-header"> + <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> + <h4 class="modal-title" id="myModalLabel">Erstelle eine neue Galerie</h4> + </div> + <div class="modal-body"> +<fieldset> + +<!-- Text input--> +<div class="form-group"> + <label class="col-md-4 control-label" for="name">Galerie Name</label> + <div class="col-md-6"> + <input id="name" name="name" placeholder="Wie heißt die neue Fotogalerie? (Pflicht)" class="form-control input-md" required="" type="text"> + + </div> +</div> + +<!-- Text input--> +<div class="form-group"> + <label class="col-md-4 control-label" for="desc">Beschreibung</label> + <div class="col-md-6"> + <input id="desc" name="desc" placeholder="Kurze Zusammenfassung. (Pflicht)" class="form-control input-md" required="" type="text"> + + </div> +</div> + +</fieldset> + </div> + <div class="modal-footer"> + <button type="button" class="btn btn-default" data-dismiss="modal">Schließen</button> + <button id="btn-send" type="submit" class="btn btn-primary" data-loading-text="Lade...">Erstellen</button> + </div> + </div> + </div> +</div> +</form> |
