File: login.php

package info (click to toggle)
phpldapadmin 1.2.0.5-2%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,248 kB
  • ctags: 3,066
  • sloc: php: 16,758; xml: 1,494; sh: 322; makefile: 50
file content (37 lines) | stat: -rw-r--r-- 989 bytes parent folder | download | duplicates (3)
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
/**
 * Log the user in.
 *
 * @package phpLDAPadmin
 * @subpackage Page
 */

/**
 */

require './common.php';

$user = array();
$user['login'] = get_request('login');
$user['password'] = get_request('login_pass');

if ($user['login'] && ! strlen($user['password']))
	system_message(array(
		'title'=>_('Authenticate to server'),
		'body'=>_('You left the password blank.'),
		'type'=>'warn'),
		sprintf('cmd.php?cmd=login_form&server_id=%s',get_request('server_id','REQUEST')));

if ($app['server']->login($user['login'],$user['password'],'user'))
	system_message(array(
		'title'=>_('Authenticate to server'),
		'body'=>_('Successfully logged into server.'),
		'type'=>'info'),
		sprintf('cmd.php?server_id=%s',get_request('server_id','REQUEST')));
else
	system_message(array(
		'title'=>_('Failed to Authenticate to server'),
		'body'=>_('Invalid Username or Password.'),
		'type'=>'error'),
		sprintf('cmd.php?cmd=login_form&server_id=%s',get_request('server_id','REQUEST')));
?>