diff options
| author | root | 2014-10-19 03:54:53 +0200 |
|---|---|---|
| committer | root | 2014-10-19 03:54:53 +0200 |
| commit | 2330bb06ececee220d854883a2870a3adf17c277 (patch) | |
| tree | e49f6b561faf5b39a81d57d54fa57a1550074c0f /static/modal-delete-gallery.php | |
| parent | a3009bf57d50fbc25a707b32fb3c5c170d011680 (diff) | |
| download | jungegemeinde-2330bb06ececee220d854883a2870a3adf17c277.tar.gz | |
Version 4.1. Support for photo galleries and advanced caching.
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> |
