summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/dhcp/delete_confirm.php
blob: 62225afc7131c69f2749a87a95bab1712c5283e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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>";
?>