diff options
Diffstat (limited to 'static/modal-delete-gallery.php')
| -rw-r--r-- | static/modal-delete-gallery.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/static/modal-delete-gallery.php b/static/modal-delete-gallery.php new file mode 100644 index 0000000..74471ac --- /dev/null +++ b/static/modal-delete-gallery.php @@ -0,0 +1,24 @@ +<!-- Modal --> +<form class="form-horizontal" method="POST" action="/?page=action&task=deleteGallery&gallery=<?php echo htmlentities($_SESSION['gallery']); ?>"> +<div class="modal fade" id="modal-delete-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">Löschen</h4> + </div> + <div class="modal-body"> +<fieldset> + <h4>Bist du dir ganz sicher '<?php echo htmlentities($row["name"]); ?>' komplett zu löschen?</h4> + <p>Nachdem die Bilder gelöscht sind können sie nicht wieder hergestellt werden!</p> + +</fieldset> + </div> + <div class="modal-footer"> + <button type="button" class="btn btn-default" data-dismiss="modal">Nee, dann doch nicht...</button> + <button id="btn-send" type="submit" class="btn btn-danger" data-loading-text="Lade..."><span class="glyphicon glyphicon-trash"></span> Ja, ganz sicher!</button> + </div> + </div> + </div> +</div> +</form> |
