Project

General

Profile

1 1473 Luisehahne
<?php
2
/**
3
 *
4
 * @category        frontend
5
 * @package         account
6
 * @author          WebsiteBaker Project
7
 * @copyright       2004-2009, Ryan Djurovich
8
 * @copyright       2009-2011, Website Baker Org. e.V.
9
 * @link			http://www.websitebaker2.org/
10
 * @license         http://www.gnu.org/licenses/gpl.html
11
 * @platform        WebsiteBaker 2.8.x
12
 * @requirements    PHP 5.2.2 and higher
13
 * @version         $Id$
14
 * @filesource		$HeadURL$
15
 * @lastmodified    $Date$
16
 *
17
 */
18
19
require_once("../config.php");
20
21
// Make sure the login is enabled
22
if(!FRONTEND_LOGIN) {
23
	if(INTRO_PAGE) {
24
		header('Location: '.WB_URL.PAGES_DIRECTORY.'/index.php');
25
		exit(0);
26
	} else {
27
		header('Location: '.WB_URL.'/index.php');
28
		exit(0);
29
	}
30
}
31
32 1508 Luisehahne
require_once(WB_PATH.'/framework/class.frontend.php');
33
$wb_inst = new wb();
34
$page_id = !empty($_SESSION['PAGE_ID']) ? $_SESSION['PAGE_ID'] : 0;
35
36 1473 Luisehahne
// Required page details
37 1508 Luisehahne
// $page_id = 0;
38 1473 Luisehahne
$page_description = '';
39
$page_keywords = '';
40 1508 Luisehahne
define('PAGE_ID', $page_id);
41 1473 Luisehahne
define('ROOT_PARENT', 0);
42
define('PARENT', 0);
43
define('LEVEL', 0);
44
define('PAGE_TITLE', $TEXT['PLEASE_LOGIN']);
45
define('MENU_TITLE', $TEXT['PLEASE_LOGIN']);
46
define('VISIBILITY', 'public');
47
// Set the page content include file
48
define('PAGE_CONTENT', WB_PATH.'/account/login_form.php');
49
50
require_once(WB_PATH.'/framework/class.login.php');
51
52
// Create new login app
53
$requestMethod = '_'.strtoupper($_SERVER['REQUEST_METHOD']);
54
$redirect = strip_tags(isset(${$requestMethod}['redirect']) ? ${$requestMethod}['redirect'] : '');
55
$thisApp = new Login(
56
				array(
57
						"MAX_ATTEMPS" => "3",
58
						"WARNING_URL" => THEME_URL."/templates/warning.html",
59
						"USERNAME_FIELDNAME" => 'username',
60
						"PASSWORD_FIELDNAME" => 'password',
61
						"REMEMBER_ME_OPTION" => SMART_LOGIN,
62
						"MIN_USERNAME_LEN" => "2",
63
						"MIN_PASSWORD_LEN" => "2",
64
						"MAX_USERNAME_LEN" => "30",
65
						"MAX_PASSWORD_LEN" => "30",
66
						"LOGIN_URL" => WB_URL."/account/login.php?redirect=" .$redirect,
67
						"DEFAULT_URL" => WB_URL.PAGES_DIRECTORY."/index.php",
68
						"TEMPLATE_DIR" => THEME_PATH."/templates",
69
						"TEMPLATE_FILE" => "login.htt",
70
						"FRONTEND" => true,
71
						"FORGOTTEN_DETAILS_APP" => WB_URL."/account/forgot.php",
72
						"USERS_TABLE" => TABLE_PREFIX."users",
73
						"GROUPS_TABLE" => TABLE_PREFIX."groups",
74
						"REDIRECT_URL" => $redirect
75
				)
76
		);
77
78
// Set extra outsider var
79
$globals[] = 'thisApp';
80
81
// Include the index (wrapper) file
82
require(WB_PATH.'/index.php');