source: trunk/identification.php @ 631

Last change on this file since 631 was 631, checked in by gweltas, 19 years ago
  • User control panel update (user side)
  • User control panel update (admin side)
  • Add of registration link on the main page
  • Minor bug correction for group management
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
RevLine 
[2]1<?php
[354]2// +-----------------------------------------------------------------------+
[593]3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2004 PhpWebGallery Team - http://phpwebgallery.net |
[354]6// +-----------------------------------------------------------------------+
[593]7// | branch        : BSF (Best So Far)
[354]8// | file          : $RCSfile$
9// | last update   : $Date: 2004-12-03 16:30:12 +0000 (Fri, 03 Dec 2004) $
10// | last modifier : $Author: gweltas $
11// | revision      : $Revision: 631 $
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// +-----------------------------------------------------------------------+
[2]27
[402]28//--------------------------------------------------------------------- include
[364]29define('PHPWG_ROOT_PATH','./');
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
[345]31
[2]32//-------------------------------------------------------------- identification
[45]33$errors = array();
[541]34if (isset($_POST['login']))
[2]35{
36  // retrieving the encrypted password of the login submitted
[541]37  $query = '
38SELECT id, password
39  FROM '.USERS_TABLE.'
40  WHERE username = \''.$_POST['username'].'\'
41;';
[587]42  $row = mysql_fetch_array(pwg_query($query));
[541]43  if ($row['password'] == md5($_POST['password']))
[2]44  {
[555]45    $session_length = $conf['session_length'];
46    if ($conf['authorize_remembering']
47        and isset($_POST['remember_me'])
48        and $_POST['remember_me'] == 1)
[541]49    {
[555]50      $session_length = $conf['remember_me_length'];
[541]51    }
[555]52    $session_id = session_create($row['id'], $session_length);
53    redirect('category.php?id='.$session_id);
[2]54  }
55  else
56  {
[45]57    array_push( $errors, $lang['invalid_pwd'] );
[2]58  }
59}
60//----------------------------------------------------- template initialization
[345]61//
62// Start output of page
63//
64$title = $lang['ident_page_title'];
[369]65include(PHPWG_ROOT_PATH.'include/page_header.php');
[345]66
[365]67$template->set_filenames( array('identification'=>'identification.tpl') );
68
[402]69$template->assign_vars(
70  array(
71    'MAIL_ADMIN' => $conf['mail_webmaster'],
72   
73    'L_TITLE' => $lang['ident_title'],
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'],
[541]79    'L_FORGET' => $lang['ident_forgotten_password'],
80    'L_REMEMBER_ME'=>$lang['remember_me'],
[402]81   
82    'F_LOGIN_ACTION' => add_session_id('identification.php')
83    ));
[555]84
85if ($conf['authorize_remembering'])
86{
87  $template->assign_block_vars('remember_me',array());
88}
[2]89//-------------------------------------------------------------- errors display
[87]90if ( sizeof( $errors ) != 0 )
[2]91{
[365]92  $template->assign_block_vars('errors',array());
93  for ( $i = 0; $i < sizeof( $errors ); $i++ )
[2]94  {
[365]95    $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i]));
[2]96  }
97}
[365]98
[2]99//-------------------------------------------------------------- visit as guest
[104]100if ( $conf['access'] == 'free' )
[2]101{
[365]102  $template->assign_block_vars('free_access',array());
[2]103}
104//----------------------------------------------------------- html code display
[365]105$template->pparse('identification');
[369]106include(PHPWG_ROOT_PATH.'include/page_tail.php');
[362]107?>
Note: See TracBrowser for help on using the repository browser.