Subversion Repositories ALCASAR

Rev

Rev 2452 | Rev 2459 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
318 richard 1
<?php
2449 tom.houday 2
# $Id: ldap.php 2453 2017-12-06 00:06:41Z tom.houdayer $
3
 
2453 tom.houday 4
/* written by steweb57, Rexy & Tom HOUDAYER */
318 richard 5
/****************************************************************
2449 tom.houday 6
*			GLOBAL FILE PATHS			*
318 richard 7
*****************************************************************/
2449 tom.houday 8
define('CONF_FILE', '/usr/local/etc/alcasar.conf');
318 richard 9
 
2449 tom.houday 10
/****************************************************************
11
*			FILE reading test			*
12
*****************************************************************/
13
$conf_files = array(CONF_FILE);
14
foreach ($conf_files as $file) {
15
	if (!file_exists($file)) {
16
		exit("Fichier $file non présent");
17
	}
18
	if (!is_readable($file)) {
19
		exit("Vous n'avez pas les droits de lecture sur le fichier $file");
20
	}
21
}
318 richard 22
 
1160 stephane 23
/****************************************************************
2449 tom.houday 24
*			Read CONF_FILE				*
25
*****************************************************************/
26
$file_conf = fopen(CONF_FILE, 'r');
27
if (!$file_conf) {
28
	exit('Error opening the file '.CONF_FILE);
29
}
30
while (!feof($file_conf)) {
31
	$buffer = fgets($file_conf, 4096);
32
	if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
33
		$tmp = explode('=', $buffer, 2);
34
		$conf[trim($tmp[0])] = trim($tmp[1]);
35
	}
36
}
37
fclose($file_conf);
38
 
39
/****************************************************************
1672 richard 40
*			Choice of language			*
1160 stephane 41
*****************************************************************/
42
$Language = 'en';
2449 tom.houday 43
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
44
	$Langue	  = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
45
	$Language = strtolower(substr(chop($Langue[0]), 0, 2));
46
}
47
if ($Language === 'fr') {		// French
1160 stephane 48
	$l_ldap_update_sucess		= "Mise à jour des paramètres LDAP réalisée avec succès";
1672 richard 49
	$l_ldap_title			= "Authentification externe : LDAP";
50
	$l_ldap_legend			= "Authentification LDAP";
1160 stephane 51
	$l_ldap_auth_enable_label	= "Activer l'authentification LDAP:";
1672 richard 52
	$l_ldap_YES			= "OUI";
53
	$l_ldap_NO			= "NON";
1677 richard 54
	$l_ldap_server_label		= "Serveur LDAP:";
2306 tom.houday 55
	$l_ldap_server_text		= "Adresse IP du serveur LDAP";
1160 stephane 56
	$l_ldap_base_dn_label		= "DN de la base LDAP:";
1673 richard 57
	$l_ldap_base_dn_text		= "DN est le 'Distinguished Name', il définit où se situent les informations des utilisateurs dans l'annuaire. Exemple LDAP: 'o=mycompany, c=FR'. Exemple AD 'ou=my_lan,dc=server_name,dc=localdomain'";
1160 stephane 58
	$l_ldap_filter_label		= "Identifiant LDAP:";
1673 richard 59
	$l_ldap_filter_text		= "Clé utilisée lors de la recherche d'un identifiant de connexion, exemple: 'uid', 'sn', etc. Pour un AD mettre 'sAMAccountName'.";
60
	$l_ldap_base_filter_label	= "Filtre de recherche d'utilisateurs LDAP:";
61
	$l_ldap_base_filter_text	= "En option, vous pouvez limiter les objets recherchés avec des filtres additionnels. Par exemple 'objectClass=posixGroup' aurait comme conséquence l'utilisation de '(&amp;(uid=username)(objectClass=posixGroup))'";
1672 richard 62
	$l_ldap_user_label		= "Utilisateur LDAP:";
1673 richard 63
	$l_ldap_user_text		= "Nom d'utilisateur utilisé par ALCASAR pour se connecter au serveur LDAP. Laissez vide pour utiliser un accès invité (ou anomyme). Obligatoire sur un AD. exemple LDAP : 'uid=username,ou=my_lan,o=mycompany,c=FR'. Exemple AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
1160 stephane 64
	$l_ldap_password_label		= "Mot de passe LDAP:";
1673 richard 65
	$l_ldap_password_text		= "Laissez vide pour un accès invité (ou anonyme). Obligatoire sur un AD.";
1672 richard 66
	$l_ldap_submit			= "Enregistrer";
67
	$l_ldap_reset			= "Annuler";
1160 stephane 68
	$l_ldap_test_network_failed	= "Pas de connectivité réseau avec le serveur LDAP.";
69
	$l_ldap_test_connection_failed	= "Impossible de se connecter au serveur LDAP.";
70
	$l_ldap_test_bind_ok		= "Connexion LDAP réussie...";
1673 richard 71
	$l_ldap_test_bind_failed	= "Echec d'authentification sur le serveur LDAP... Vérifiez votre configuration";
1395 richard 72
	$l_ldap_test_dn_ok		= "DN semble bon";
73
	$l_ldap_test_dn_failed		= "DN semble mauvais";
2449 tom.houday 74
	$l_ldap_error			= "erreur LDAP";
75
} else {				// English
1160 stephane 76
	$l_ldap_update_sucess		= "Successfull LDAP settings update";
1672 richard 77
	$l_ldap_title			= "External authentication : LDAP";
78
	$l_ldap_legend			= "LDAP authentication";
1160 stephane 79
	$l_ldap_auth_enable_label	= "Use LDAP authentication :";
1672 richard 80
	$l_ldap_YES			= "YES";
81
	$l_ldap_NO			= "NO";
1677 richard 82
	$l_ldap_server_label		= "LDAP server :";
2306 tom.houday 83
	$l_ldap_server_text		= "This is the IP address of the LDAP server.";
1160 stephane 84
	$l_ldap_base_dn_label		= "LDAP base dn:";
1673 richard 85
	$l_ldap_base_dn_text		= "This is the 'Distinguished Name', locating the user information in the directory. e.g. LDAP : 'o=MyCompany,c=US'. e.g. AD : 'ou=my_lan,dc=server_name,dc=localdomain'";
1160 stephane 86
	$l_ldap_filter_label		= "LDAP uid:";
1673 richard 87
	$l_ldap_filter_text		= "This is the key used to search for a given login identity, e.g. 'uid', 'sn', etc.. For AD use 'sAMAccountName'.";
1160 stephane 88
	$l_ldap_base_filter_label	= "LDAP user filter:";
89
	$l_ldap_base_filter_text	= "Optionally you can further limit the searched objects with additional filters. For example 'objectClass=posixGroup' would result in the use of '(&amp;(uid=username)(objectClass=posixGroup))'";
1672 richard 90
	$l_ldap_user_label		= "LDAP user dn:";
1673 richard 91
	$l_ldap_user_text		= "Username used by ALCASAR to connect to the LDAP server. Leave blank to use anonymous binding. Required for AD. e.g. LDAP :'uid=Username,ou=my_lan,o=mycompany,c=US'. e.g. AD : cn=username,ou=my_lan,dc=server_name,dc=localdomain'";
1160 stephane 92
	$l_ldap_password_label		= "LDAP password:";
1673 richard 93
	$l_ldap_password_text		= "Leave blank to use anonymous binding. Required for AD.";
1672 richard 94
	$l_ldap_submit			= "Save";
95
	$l_ldap_reset			= "Reset";
1160 stephane 96
	$l_ldap_test_network_failed	= "LDAP server is not reachable.";
97
	$l_ldap_test_connection_failed	= "LDAP connexion failed...";
98
	$l_ldap_test_bind_ok		= "LDAP connexion success...";
99
	$l_ldap_test_bind_failed	= "LDAP authentication failed...Check your ldap setup...";
1395 richard 100
	$l_ldap_test_dn_ok              = "DN seems to be right";
101
	$l_ldap_test_dn_failed          = "DN seems to be wrong";
2449 tom.houday 102
	$l_ldap_error			= "LDAP error";
1160 stephane 103
}
318 richard 104
 
105
 
2449 tom.houday 106
function ldap_checkServerConfig($f_ldap_server, $f_ldap_identity, $f_ldap_password, $f_ldap_basedn, $f_ldap_filter, $f_ldap_port = 389) {
107
	// Test connect to the LDAP server
620 stephane 108
	if (!$sock = @fsockopen($f_ldap_server, $f_ldap_port, $num, $error, 2)) {
658 stephane 109
		// no network connection
620 stephane 110
		return -1;
2449 tom.houday 111
	}
112
	fclose($sock);
1395 richard 113
 
2449 tom.houday 114
	// Test connect to the LDAP server
115
	$ldapconn = ldap_connect($f_ldap_server, $f_ldap_port);
116
	ldap_set_option($ldapconn, LDAP_OPT_TIMELIMIT, 2);
117
	if (!$ldapconn) {
118
		// LDAP connection failed
119
		return -2;
620 stephane 120
	}
121
 
2449 tom.houday 122
	$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
123
	if (!$ldapbind) {
124
		// Test LDAP Version 3
125
		ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
126
		$ldapbind = ldap_bind($ldapconn, $f_ldap_identity, $f_ldap_password);
318 richard 127
 
2449 tom.houday 128
		if (!$ldapbind) {
129
			// LDAP Bind failed
130
			return 0;
318 richard 131
		}
2449 tom.houday 132
	}
133
	ldap_unbind($ldapconn);
134
 
135
	// try search
136
	$query = $f_ldap_filter.'=*';
137
	if (ldap_search($ldapconn, $f_ldap_basedn, $query)) {
138
		return 2;
318 richard 139
	} else {
2449 tom.houday 140
		return 1;
318 richard 141
	}
142
}
2449 tom.houday 143
 
2451 tom.houday 144
$messages = '';
145
 
146
if (isset($_POST['auth_enable'])) {
147
	if ($_POST['auth_enable'] === '1') {
148
		$varErrors = [];
149
		if (isset($_POST['ldap_server']))      $ldap_server      = $_POST['ldap_server'];      else array_push($varErrors, 'Variable error "ldap_server"');
150
		if (isset($_POST['ldap_base_dn']))     $ldap_base_dn     = $_POST['ldap_base_dn'];     else array_push($varErrors, 'Variable error "ldap_base_dn"');
151
		if (isset($_POST['ldap_filter']))      $ldap_filter      = $_POST['ldap_filter'];      else array_push($varErrors, 'Variable error "ldap_filter"');
152
		if (isset($_POST['ldap_base_filter'])) $ldap_base_filter = $_POST['ldap_base_filter']; else array_push($varErrors, 'Variable error "ldap_base_filter"');
153
		if (isset($_POST['ldap_user']))        $ldap_user        = $_POST['ldap_user'];        else array_push($varErrors, 'Variable error "ldap_user"');
154
		if (isset($_POST['ldap_password']))    $ldap_password    = $_POST['ldap_password'];    else array_push($varErrors, 'Variable error "ldap_password"');
155
 
156
		// Validation
157
		if (isset($ldap_server)) {
158
			if ((!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) && (preg_match('/^[a-zA-Z0-9-_.]+$/', $ldap_server))) {
159
				$ldap_server = gethostbyname($ldap_server);
160
			}
161
			if (!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) {
162
				array_push($varErrors, 'Invalid LDAP server IP');
163
			}
164
		}
165
 
166
		if (!empty($varErrors)) { 
167
			$messages .= '<div style="text-align: center"><br>';
168
			foreach ($varErrors as $error) {
169
				$messages .= '<span style="font-weight: bold; color: red;">'.$error.'</span><br>';
170
			}
171
			$messages .= '<br></div>';
172
		} else {
173
			exec('sed -i \'s/^LDAP=.*/LDAP=on/g\' '.CONF_FILE);
174
			exec('sed -i '.escapeshellarg("s/^LDAP_SERVER=.*/LDAP_SERVER=$ldap_server/g").' '.CONF_FILE);
175
			exec('sed -i '.escapeshellarg("s/^LDAP_BASE=.*/LDAP_BASE=$ldap_base_dn/g").' '.CONF_FILE);
176
			exec('sed -i '.escapeshellarg("s/^LDAP_UID=.*/LDAP_UID=$ldap_filter/g").' '.CONF_FILE);
2452 tom.houday 177
			exec('sed -i '.escapeshellarg("s/^LDAP_FILTER=.*/LDAP_FILTER=$ldap_base_filter/g").' '.CONF_FILE);
2451 tom.houday 178
			exec('sed -i '.escapeshellarg("s/^LDAP_USER=.*/LDAP_USER=$ldap_user/g").' '.CONF_FILE);
179
			exec('sed -i '.escapeshellarg("s/^LDAP_PASSWORD=.*/LDAP_PASSWORD=$ldap_password/g").' '.CONF_FILE);
180
			exec('sudo /usr/local/bin/alcasar-ldap.sh --on');
181
 
182
			$messages .= '<div style="text-align: center"><br>';
183
			$messages .= '<span style="font-weight: bold; color: green;">'.$l_ldap_update_sucess.'</span><br>';
184
			$messages .= '<br></div>';
185
		}
186
	} else {
187
		exec('sed -i "s/^LDAP=.*/LDAP=off/g" '.CONF_FILE);
188
		exec('sudo /usr/local/bin/alcasar-ldap.sh --off');
189
 
190
		$messages .= '<div style="text-align: center"><br>';
191
		$messages .= '<span style="font-weight: bold; color: green;">'.$l_ldap_update_sucess.'</span><br>';
192
		$messages .= '<br></div>';
193
	}
194
 
195
	// Reload configuration
196
	$file_conf = fopen(CONF_FILE, 'r');
197
	if (!$file_conf) {
198
		exit('Error opening the file '.CONF_FILE);
199
	}
200
	while (!feof($file_conf)) {
201
		$buffer = fgets($file_conf, 4096);
202
		if ((strpos($buffer, '=') !== false) && (substr($buffer, 0, 1) !== '#')) {
203
			$tmp = explode('=', $buffer, 2);
204
			$conf[trim($tmp[0])] = trim($tmp[1]);
205
		}
206
	}
207
	fclose($file_conf);
208
}
209
 
210
// LDAP configuration params
211
$ldap_status      = ($conf['LDAP'] === 'on');
212
$ldap_server      = $conf['LDAP_SERVER'];
2453 tom.houday 213
$ldap_user        = $conf['LDAP_USER'];
2451 tom.houday 214
$ldap_password    = $conf['LDAP_PASSWORD'];
2452 tom.houday 215
$ldap_base_dn     = $conf['LDAP_BASE'];
2451 tom.houday 216
$ldap_filter      = $conf['LDAP_UID'];
217
$ldap_base_filter = $conf['LDAP_FILTER'];
218
 
2449 tom.houday 219
// TODO : check LDAP PHP extension loaded?
220
// if (!extension_loaded('ldap')) {
221
// 	exit();
222
// }
223
 
224
$pos = strpos($ldap_server, '//');
225
if ($pos !== false) {
226
	// TODO : useless?
227
	$new_ldap_server = explode('//', $ldap_server); // pour discriminer le host et le protocole dans la notation "ldap://192.168.182.10" ou "ldaps://monldap.monentreperise.com"
658 stephane 228
} else {
659 richard 229
	$new_ldap_server = $ldap_server;
658 stephane 230
}
2449 tom.houday 231
if ($ldap_status) {
2453 tom.houday 232
	$serverCheckResult = ldap_checkServerConfig($new_ldap_server, $ldap_user, $ldap_password, $ldap_base_dn, $ldap_filter);
2449 tom.houday 233
}
1395 richard 234
 
2453 tom.houday 235
// AJAX LDAP configuration checker
236
if (isset($_GET['conf_check'])) {
237
	$response = [
238
		'enable' => $ldap_status
239
	];
240
	if ($ldap_status || ($_SERVER['REQUEST_METHOD'] === 'POST')) {
241
		$varErrors = [];
242
		if ($_SERVER['REQUEST_METHOD'] === 'POST') {
243
			if (isset($_POST['ldap_server']))      $ldap_server      = $_POST['ldap_server'];      else array_push($varErrors, 'Variable error "ldap_server"');
244
			if (isset($_POST['ldap_base_dn']))     $ldap_base_dn     = $_POST['ldap_base_dn'];     else array_push($varErrors, 'Variable error "ldap_base_dn"');
245
			if (isset($_POST['ldap_filter']))      $ldap_filter      = $_POST['ldap_filter'];      else array_push($varErrors, 'Variable error "ldap_filter"');
246
			if (isset($_POST['ldap_base_filter'])) $ldap_base_filter = $_POST['ldap_base_filter']; else array_push($varErrors, 'Variable error "ldap_base_filter"');
247
			if (isset($_POST['ldap_user']))        $ldap_user        = $_POST['ldap_user'];        else array_push($varErrors, 'Variable error "ldap_user"');
248
			if (isset($_POST['ldap_password']))    $ldap_password    = $_POST['ldap_password'];    else array_push($varErrors, 'Variable error "ldap_password"');
249
		}
250
 
251
		// Validation
252
		if (isset($ldap_server)) {
253
			if ((!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) && (preg_match('/^[a-zA-Z0-9-_.]+$/', $ldap_server))) {
254
				$ldap_server = gethostbyname($ldap_server);
255
			}
256
			if (!preg_match('/^([0-9]{1,3}\.){3}([0-9]{1,3})$/', $ldap_server)) {
257
				array_push($varErrors, 'Invalid LDAP server IP');
258
			}
259
		}
260
 
261
		$response['result'] = (ldap_checkServerConfig($ldap_server, $ldap_user, $ldap_password, $ldap_base_dn, $ldap_filter) > 0);
262
 
263
		if (!empty($varErrors)) {
264
			$response['errors'] = $varErrors;
265
		}
266
	}
267
 
268
	header('Content-Type: application/json');
269
	echo json_encode($response);
270
	exit();
271
}
272
 
620 stephane 273
?>
2449 tom.houday 274
<!DOCTYPE html>
275
<html>
276
<head>
277
	<meta charset="UTF-8">
278
	<title><?= $l_ldap_title ?></title>
279
	<link type="text/css" href="/css/style.css" rel="stylesheet">
280
	<link type="text/css" href="/css/acc.css" rel="stylesheet">
281
	<link type="text/css" href="/css/ldap.css" rel="stylesheet">
282
	<script>
283
	function onLdapStatusChange() {
284
		var listToDisables = ['ldap_server', 'ldap_dn', 'ldap_filter', 'ldap_base_filter', 'ldap_user', 'ldap_password'];
318 richard 285
 
2453 tom.houday 286
		if (document.getElementById('auth_enable').value === '1') {
2449 tom.houday 287
			for (var i=0; i<listToDisables.length; i++) {
288
				document.getElementById(listToDisables[i]).style.backgroundColor = '#ffffff';
289
				document.getElementById(listToDisables[i]).disabled = false;
290
			}
291
		} else {
292
			for (var i=0; i<listToDisables.length; i++) {
293
				document.getElementById(listToDisables[i]).style.backgroundColor = '#c0c0c0';
294
				document.getElementById(listToDisables[i]).disabled = true;
295
			}
296
		}
297
	}
2453 tom.houday 298
 
299
	function checkConfig() {
300
		var ldap_config = {
301
			ldap_status:     (document.getElementById('auth_enable').value === '1'),
302
			ldap_server:      document.getElementById('ldap_server').value,
303
			ldap_user:        document.getElementById('ldap_user').value,
304
			ldap_password:    document.getElementById('ldap_password').value,
305
			ldap_base_dn:     document.getElementById('ldap_dn').value,
306
			ldap_filter:      document.getElementById('ldap_filter').value,
307
			ldap_base_filter: document.getElementById('ldap_base_filter').value
308
		};
309
 
310
		console.log(ldap_config);
311
 
312
		var params = Object.keys(ldap_config).map( function (k) { return encodeURIComponent(k) + '=' + encodeURIComponent(ldap_config[k]) } ).join('&');
313
 
314
		var xhr = new XMLHttpRequest();
315
		xhr.onreadystatechange = function() {
316
			if (this.readyState == 4) {
317
				if (this.status == 200) {
318
					var data = JSON.parse(this.responseText);
319
 
320
					if (data.result === true) {
321
						alert('Configuration valide');
322
					} else {
323
						alert('Configuration non valide');
324
					}
325
 
326
					if (typeof data.errors !== 'undefined') {
327
						alert(data.errors.join("\n"));
328
					}
329
 
330
					console.log(data)
331
				} else {
332
					console.log(this.responseText)
333
				}
334
			}
335
		};
336
		xhr.open('POST', 'ldap.php?conf_check', true);
337
		xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
338
		xhr.send(params);
339
	}
2449 tom.houday 340
	</script>
341
</head>
342
<body onLoad="onLdapStatusChange();">
343
	<div class="panel">
344
		<div class="panel-header"><?= $l_ldap_legend ?></div>
345
		<div class="panel-body">
2451 tom.houday 346
			<form name="config_ldap" method="POST" action="<?= htmlspecialchars($_SERVER['PHP_SELF']) ?>">
2449 tom.houday 347
				<fieldset>
348
					<legend>
2451 tom.houday 349
						<?= $messages ?>
2449 tom.houday 350
						<?php if ($ldap_status): ?>
351
							<div style="text-align: center"><br>
352
								<?php if ($serverCheckResult === -2): ?>
353
									<span style="color: red"><?= $l_ldap_test_connection_failed ?></span>
354
								<?php elseif ($serverCheckResult === -1): ?>
355
									<span style="color: red"><?= $l_ldap_test_network_failed ?></span>
356
								<?php elseif ($serverCheckResult === 0): ?>
357
									<span style="color: red"><?= $l_ldap_test_bind_failed ?></span>
358
								<?php elseif ($serverCheckResult === 1): ?>
359
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
360
										<br>";
361
										<span style="color: red"><?= $l_ldap_test_dn_failed ?></span>
362
								<?php elseif ($serverCheckResult === 2): ?>
363
										<span style="color: green"><?= $l_ldap_test_bind_ok ?></span>
364
										<br>";
365
										<span style="color: green"><?= $l_ldap_test_dn_ok ?></span>
366
								<?php else: ?>
367
									<span><?= $l_ldap_error ?></span>
368
								<?php endif ?>
369
								<br><br>
370
							</div>
371
						<?php endif ?>
372
					</legend>
373
					<dl>
374
						<dt>
375
							<label for="auth_enable"><?= $l_ldap_auth_enable_label ?></label>
376
						</dt>
377
						<dd>
378
							<select id="auth_enable" name="auth_enable" onchange="onLdapStatusChange();">
379
								<option value="1"<?= ($ldap_status)  ? ' selected="selected"' : '' ?>><?= $l_ldap_YES ?></option>
380
								<option value="0"<?= (!$ldap_status) ? ' selected="selected"' : '' ?>><?= $l_ldap_NO ?></option>
381
							</select>
382
						</dd>
383
					</dl>
384
					<dl>
385
						<dt>
386
							<label for="ldap_server"><?= $l_ldap_server_label ?></label><br>
387
							<?= $l_ldap_server_text ?>
388
						</dt>
389
						<dd>
390
							<input id="ldap_server" size="40" name="ldap_server" value="<?= htmlspecialchars($ldap_server) ?>">
391
						</dd>
392
					</dl>
393
					<dl>
394
						<dt>
395
							<label for="ldap_dn"><?= $l_ldap_base_dn_label ?></label><br>
396
							<?= $l_ldap_base_dn_text ?>
397
						</dt>
398
						<dd>
2452 tom.houday 399
							<input id="ldap_dn" size="40" name="ldap_base_dn" value="<?= htmlspecialchars($ldap_base_dn) ?>">
2449 tom.houday 400
						</dd>
401
					</dl>
402
					<dl>
403
						<dt>
404
							<label for="ldap_filter"><?= $l_ldap_filter_label ?></label><br>
405
							<?= $l_ldap_filter_text ?>
406
						</dt>
407
						<dd>
408
							<input id="ldap_filter" size="40" name="ldap_filter" value="<?= htmlspecialchars($ldap_filter) ?>">
409
						</dd>
410
					</dl>
411
					<dl>
412
						<dt>
413
							<label for="ldap_base_filter"><?= $l_ldap_base_filter_label ?></label><br>
414
							<?= $l_ldap_base_filter_text ?>
415
						</dt>
416
						<dd>
417
							<input id="ldap_base_filter" size="40" name="ldap_base_filter" value="<?= htmlspecialchars($ldap_base_filter) ?>">
418
						</dd>
419
					</dl>
420
					<dl>
421
						<dt>
422
							<label for="ldap_user"><?= $l_ldap_user_label ?></label><br>
423
							<?= $l_ldap_user_text ?>
424
						</dt>
425
						<dd>
2453 tom.houday 426
							<input id="ldap_user" size="40" name="ldap_user" value="<?= htmlspecialchars($ldap_user) ?>">
2449 tom.houday 427
						</dd>
428
					</dl>
429
					<dl>
430
						<dt>
431
							<label for="ldap_password"><?= $l_ldap_password_label ?></label><br>
432
							<?= $l_ldap_password_text ?>
433
						</dt>
434
						<dd>
435
							<input id="ldap_password" type="password" size="40" name="ldap_password" value="<?= htmlspecialchars($ldap_password) ?>">
436
						</dd>
437
					</dl>
438
					<p>
439
						<input id="submit" type="submit" value="<?= $l_ldap_submit ?>" name="submit">
440
						<input id="reset" type="reset" value="<?= $l_ldap_reset ?>" name="reset">
2453 tom.houday 441
						<button onclick="checkConfig(); return false;">Check [BETA]</button>
2449 tom.houday 442
					</p>
443
				</fieldset>
444
			</form>
445
		</div>
446
	</div>
318 richard 447
</body>
448
</html>