summaryrefslogtreecommitdiff
path: root/signin.php
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2013-07-03 16:09:39 -0400
committerspiderr <spider@viovio.com>2013-07-03 16:09:39 -0400
commit3bf9d931a1f2b2043f8f7cb54a57f52212dbafef (patch)
treec107ba304f9207af6f5c3ce67266a73cce4ca37b /signin.php
parent6561146395a09ef94339bf6cd5916f0c63f6b666 (diff)
downloadusers-3bf9d931a1f2b2043f8f7cb54a57f52212dbafef.tar.gz
users-3bf9d931a1f2b2043f8f7cb54a57f52212dbafef.tar.bz2
users-3bf9d931a1f2b2043f8f7cb54a57f52212dbafef.zip
add signin
Diffstat (limited to 'signin.php')
-rw-r--r--signin.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/signin.php b/signin.php
new file mode 100644
index 0000000..66b890b
--- /dev/null
+++ b/signin.php
@@ -0,0 +1,41 @@
+<?php
+/**
+ * $Header$
+ *
+ * Copyright (c) 2004 bitweaver.org
+ * Copyright (c) 2003 tikwiki.org
+ * Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
+ * All Rights Reserved. See below for details and a complete list of authors.
+ * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
+ *
+ * $Id$
+ * @package users
+ * @subpackage functions
+ */
+
+/**
+ * required setup
+ */
+include_once ("../kernel/setup_inc.php");
+
+if( !empty( $_REQUEST['returnto'] ) ) {
+ $_SESSION['returnto'] = $_REQUEST['returnto'];
+} elseif( !empty( $_SERVER['HTTP_REFERER'] ) && !strpos( $_SERVER['HTTP_REFERER'], 'login.php' ) && !strpos( $_SERVER['HTTP_REFERER'], 'register.php' ) ) {
+ $from = parse_url( $_SERVER['HTTP_REFERER'] );
+ if( !empty( $from['path'] ) && $from['host'] == $_SERVER['SERVER_NAME'] ) {
+ $_SESSION['loginfrom'] = $from['path'].'?'.( !empty( $from['query'] ) ? $from['query'] : '' );
+ }
+}
+
+if( $gBitUser->isRegistered() ) {
+ header( 'Location: '.$gBitSystem->getConfig( 'users_login_homepage', USERS_PKG_URL.'my.php' ) );
+ die;
+}
+
+if( !empty( $_REQUEST['error'] ) ) {
+ $gBitSmarty->assign( 'error', $_REQUEST['error'] );
+ $gBitSystem->setHttpStatus( HttpStatusCodes::HTTP_FORBIDDEN );
+}
+
+$gBitSystem->display( 'bitpackage:users/signin.tpl', $gBitSystem->getConfig( 'site_title' ).' Login' , array( 'display_mode' => 'display' ));
+?>