summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/dhcp/delete_confirm.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/dhcp/delete_confirm.php')
-rw-r--r--ldap-site-mngmt/webinterface/dhcp/delete_confirm.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/ldap-site-mngmt/webinterface/dhcp/delete_confirm.php b/ldap-site-mngmt/webinterface/dhcp/delete_confirm.php
new file mode 100644
index 00000000..62225afc
--- /dev/null
+++ b/ldap-site-mngmt/webinterface/dhcp/delete_confirm.php
@@ -0,0 +1,37 @@
+<?php
+include('../standard_header.inc.php');
+
+$dn = $_POST['dn'];
+$name = $_POST['name'];
+$delurl = $_POST['delurl'];
+$backurl = $_POST['backurl'];
+$successurl = $_POST['successurl'];
+
+echo "
+<html>
+<head>
+ <title>AU Management</title>
+ <link rel='stylesheet' href='../styles.css' type='text/css'>
+</head>
+<body>
+<table border='0' cellpadding='30' cellspacing='0'>
+ <tr>
+ <td>
+ Wollen Sie das Objekt <b>".$name."</b> wirklich l&ouml;schen?<br><br>
+ <form action='".$delurl."' method='post'>
+ Falls ja:<br><br>
+ <input type='hidden' name='dn' value='".$dn."'>
+ <input type='hidden' name='name' value='".$name."'>
+ <input type='hidden' name='successurl' value='".$successurl."'>
+ <input type='Submit' name='apply' value='l&ouml;schen' class='small_loginform_button'><br><br>
+ </form>
+ <form action='".$backurl."' method='post'>
+ Falls, nein:<br><br>
+ <input type='Submit' name='apply' value='zur&uuml;ck' class='small_loginform_button'>
+ </form>
+ </td>
+ </tr>
+</table>
+</body>
+</html>";
+?> \ No newline at end of file