Project

General

Profile

1
<?php
2
/*
3
*
4
*                       About WebsiteBaker
5
*
6
* Website Baker is a PHP-based Content Management System (CMS)
7
* designed with one goal in mind: to enable its users to produce websites
8
* with ease.
9
*
10
*                       LICENSE INFORMATION
11
*
12
* WebsiteBaker is free software; you can redistribute it and/or
13
* modify it under the terms of the GNU General Public License
14
* as published by the Free Software Foundation; either version 2
15
* of the License, or (at your option) any later version.
16
*
17
* WebsiteBaker is distributed in the hope that it will be useful,
18
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20
* See the GNU 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, USA.
25
*
26
*                   WebsiteBaker Extra Information
27
*
28
*
29
*/
30
/**
31
 *
32
 * @category        frontend
33
 * @package         account
34
 * @author          Ryan Djurovich
35
 * @copyright       2004-2009, Ryan Djurovich
36
 * @copyright       2009-2010, Website Baker Org. e.V.
37
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/account/login.php $
38
 * @author          Ryan Djurovich
39
 * @copyright       2004-2009, Ryan Djurovich
40
 *
41
 * @author          WebsiteBaker Project
42
 * @link			http://www.websitebaker2.org/
43
 * @copyright       2009-2010, Website Baker Org. e.V.
44
 * @link			http://start.websitebaker2.org/impressum-datenschutz.php
45
 * @license         http://www.gnu.org/licenses/gpl.html
46
 * @version         $Id: login.php 1262 2010-01-21 08:24:34Z Luisehahne $ 
47
 * @platform        WebsiteBaker 2.8.x
48
 * @requirements    PHP 4.3.4 and higher
49
 * @lastmodified    $Date: 2010-01-21 09:24:34 +0100 (Thu, 21 Jan 2010) $
50
 *
51
 */
52

    
53
require_once("../config.php");
54

    
55
// Make sure the login is enabled
56
if(!FRONTEND_LOGIN) {
57
	if(INTRO_PAGE) {
58
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
59
		exit(0);
60
	} else {
61
		header('Location: '.WB_URL.'/index.php');
62
		exit(0);
63
	}
64
}
65

    
66
// Required page details
67
$page_id = 0;
68
$page_description = '';
69
$page_keywords = '';
70
define('PAGE_ID', 0);
71
define('ROOT_PARENT', 0);
72
define('PARENT', 0);
73
define('LEVEL', 0);
74
define('PAGE_TITLE', $TEXT['PLEASE_LOGIN']);
75
define('MENU_TITLE', $TEXT['PLEASE_LOGIN']);
76
define('VISIBILITY', 'public');
77
// Set the page content include file
78
define('PAGE_CONTENT', WB_PATH.'/account/login_form.php');
79

    
80
require_once(WB_PATH.'/framework/class.login.php');
81

    
82
// Create new login app
83
$redirect = strip_tags((isset($_REQUEST['redirect'])) ? $_REQUEST['redirect'] : '');
84
$thisApp = new Login(
85
							array(
86
									"MAX_ATTEMPS" => "3",
87
									"WARNING_URL" => THEME_URL."/templates/warning.html",
88
									"USERNAME_FIELDNAME" => 'username',
89
									"PASSWORD_FIELDNAME" => 'password',
90
									"REMEMBER_ME_OPTION" => SMART_LOGIN,
91
									"MIN_USERNAME_LEN" => "2",
92
									"MIN_PASSWORD_LEN" => "2",
93
									"MAX_USERNAME_LEN" => "30",
94
									"MAX_PASSWORD_LEN" => "30",
95
									"LOGIN_URL" => WB_URL."/account/login.php?redirect=" .$redirect,
96
									"DEFAULT_URL" => WB_URL.PAGES_DIRECTORY."/index.php",
97
									"TEMPLATE_DIR" => THEME_PATH."/templates",
98
									"TEMPLATE_FILE" => "login.htt",
99
									"FRONTEND" => true,
100
									"FORGOTTEN_DETAILS_APP" => WB_URL."/account/forgot.php",
101
									"USERS_TABLE" => TABLE_PREFIX."users",
102
									"GROUPS_TABLE" => TABLE_PREFIX."groups",
103
									"REDIRECT_URL" => $redirect
104
							)
105
					);
106

    
107
// Set extra outsider var
108
$globals[] = 'thisApp';
109

    
110
// Include the index (wrapper) file
111
require(WB_PATH.'/index.php');
112

    
113

    
114
?>
(6-6/14)