1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
5 | // | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $RCSfile$ |
---|
9 | // | last update : $Date: 2005-01-13 10:18:49 +0000 (Thu, 13 Jan 2005) $ |
---|
10 | // | last modifier : $Author: plg $ |
---|
11 | // | revision : $Revision: 688 $ |
---|
12 | // +-----------------------------------------------------------------------+ |
---|
13 | // | This program is free software; you can redistribute it and/or modify | |
---|
14 | // | it under the terms of the GNU General Public License as published by | |
---|
15 | // | the Free Software Foundation | |
---|
16 | // | | |
---|
17 | // | This program is distributed in the hope that it will be useful, but | |
---|
18 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
19 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
20 | // | General Public License for more details. | |
---|
21 | // | | |
---|
22 | // | You should have received a copy of the GNU General Public License | |
---|
23 | // | along with this program; if not, write to the Free Software | |
---|
24 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
25 | // | USA. | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | //--------------------------------------------------------------------- include |
---|
29 | define('PHPWG_ROOT_PATH','./'); |
---|
30 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
31 | |
---|
32 | //-------------------------------------------------------------- identification |
---|
33 | $errors = array(); |
---|
34 | if (isset($_POST['login'])) |
---|
35 | { |
---|
36 | // retrieving the encrypted password of the login submitted |
---|
37 | $query = ' |
---|
38 | SELECT id, password |
---|
39 | FROM '.USERS_TABLE.' |
---|
40 | WHERE username = \''.$_POST['username'].'\' |
---|
41 | ;'; |
---|
42 | $row = mysql_fetch_array(pwg_query($query)); |
---|
43 | if ($row['password'] == md5($_POST['password'])) |
---|
44 | { |
---|
45 | $session_length = $conf['session_length']; |
---|
46 | if ($conf['authorize_remembering'] |
---|
47 | and isset($_POST['remember_me']) |
---|
48 | and $_POST['remember_me'] == 1) |
---|
49 | { |
---|
50 | $session_length = $conf['remember_me_length']; |
---|
51 | } |
---|
52 | $session_id = session_create($row['id'], $session_length); |
---|
53 | redirect('category.php?id='.$session_id); |
---|
54 | } |
---|
55 | else |
---|
56 | { |
---|
57 | array_push( $errors, $lang['invalid_pwd'] ); |
---|
58 | } |
---|
59 | } |
---|
60 | //----------------------------------------------------- template initialization |
---|
61 | // |
---|
62 | // Start output of page |
---|
63 | // |
---|
64 | $title = $lang['identification']; |
---|
65 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
66 | |
---|
67 | $template->set_filenames( array('identification'=>'identification.tpl') ); |
---|
68 | |
---|
69 | $template->assign_vars( |
---|
70 | array( |
---|
71 | 'MAIL_ADMIN' => $conf['mail_webmaster'], |
---|
72 | |
---|
73 | 'L_TITLE' => $lang['identification'], |
---|
74 | 'L_USERNAME' => $lang['login'], |
---|
75 | 'L_PASSWORD' => $lang['password'], |
---|
76 | 'L_LOGIN' => $lang['submit'], |
---|
77 | 'L_GUEST' => $lang['ident_guest_visit'], |
---|
78 | 'L_REGISTER' => $lang['ident_register'], |
---|
79 | 'L_FORGET' => $lang['ident_forgotten_password'], |
---|
80 | 'L_REMEMBER_ME'=>$lang['remember_me'], |
---|
81 | |
---|
82 | 'F_LOGIN_ACTION' => add_session_id('identification.php') |
---|
83 | )); |
---|
84 | |
---|
85 | if ($conf['authorize_remembering']) |
---|
86 | { |
---|
87 | $template->assign_block_vars('remember_me',array()); |
---|
88 | } |
---|
89 | //-------------------------------------------------------------- errors display |
---|
90 | if ( sizeof( $errors ) != 0 ) |
---|
91 | { |
---|
92 | $template->assign_block_vars('errors',array()); |
---|
93 | for ( $i = 0; $i < sizeof( $errors ); $i++ ) |
---|
94 | { |
---|
95 | $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i])); |
---|
96 | } |
---|
97 | } |
---|
98 | //-------------------------------------------------------------- visit as guest |
---|
99 | $template->assign_block_vars('free_access',array()); |
---|
100 | //----------------------------------------------------------- html code display |
---|
101 | $template->parse('identification'); |
---|
102 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
103 | ?> |
---|