Revision 17
Added by stefan about 20 years ago
| trunk/wb/account/login_form.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
|
| 3 |
// $Id: login_form.php,v 1.2 2005/02/03 08:47:46 rdjurovich Exp $
|
|
| 3 |
// $Id$ |
|
| 4 | 4 |
|
| 5 | 5 |
/* |
| 6 | 6 |
|
| ... | ... | |
| 24 | 24 |
*/ |
| 25 | 25 |
|
| 26 | 26 |
if(!defined('WB_URL')) {
|
| 27 |
header('Location: ../index.php');
|
|
| 27 |
header('Location: ../pages/index.php');
|
|
| 28 | 28 |
} |
| 29 | 29 |
|
| 30 | 30 |
if(defined('SMART_LOGIN') AND SMART_LOGIN == 'enabled') {
|
| ... | ... | |
| 112 | 112 |
|
| 113 | 113 |
<br /> |
| 114 | 114 |
|
| 115 |
<a href="<?php echo WB_URL; ?>/account/forgot.php"><?php echo $TEXT['FORGOTTEN_DETAILS']; ?></a> |
|
| 115 |
<a href="<?php echo WB_URL; ?>/account/forgot.php"><?php echo $TEXT['FORGOTTEN_DETAILS']; ?></a> |
|
| trunk/wb/account/forgot_form.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
|
| 3 |
// $Id: forgot_form.php,v 1.2 2005/03/28 11:58:03 rdjurovich Exp $
|
|
| 3 |
// $Id$ |
|
| 4 | 4 |
|
| 5 | 5 |
/* |
| 6 | 6 |
|
| ... | ... | |
| 24 | 24 |
*/ |
| 25 | 25 |
|
| 26 | 26 |
if(!defined('WB_URL')) {
|
| 27 |
header('Location: ../pages/index'.PAGE_EXTENSION);
|
|
| 27 |
header('Location: ../pages/index.php');
|
|
| 28 | 28 |
} |
| 29 | 29 |
|
| 30 | 30 |
// Create new database object |
| ... | ... | |
| 127 | 127 |
</tr> |
| 128 | 128 |
<?php } ?> |
| 129 | 129 |
</table> |
| 130 |
</form> |
|
| 130 |
</form> |
|
| trunk/wb/account/details.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
|
| 3 |
// $Id: details.php,v 1.2 2005/03/28 11:58:03 rdjurovich Exp $
|
|
| 3 |
// $Id$ |
|
| 4 | 4 |
|
| 5 | 5 |
/* |
| 6 | 6 |
|
| ... | ... | |
| 23 | 23 |
|
| 24 | 24 |
*/ |
| 25 | 25 |
|
| 26 |
if(!defined('WB_URL')) {
|
|
| 27 |
header('Location: ../pages/index.php');
|
|
| 28 |
} |
|
| 29 |
|
|
| 26 | 30 |
// Get entered values |
| 27 | 31 |
$display_name = $admin->get_post('display_name');
|
| 28 | 32 |
$language = $admin->get_post('language');
|
| ... | ... | |
| 62 | 66 |
} |
| 63 | 67 |
} |
| 64 | 68 |
|
| 65 |
?> |
|
| 69 |
?> |
|
| trunk/wb/account/signup2.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
|
| 3 |
// $Id: signup2.php,v 1.4 2005/04/02 06:25:37 rdjurovich Exp $
|
|
| 3 |
// $Id$ |
|
| 4 | 4 |
|
| 5 | 5 |
/* |
| 6 | 6 |
|
| ... | ... | |
| 24 | 24 |
*/ |
| 25 | 25 |
|
| 26 | 26 |
if(!defined('WB_URL')) {
|
| 27 |
header('Location: ../pages/index'.PAGE_EXTENSION);
|
|
| 27 |
header('Location: ../pages/index.php');
|
|
| 28 | 28 |
} |
| 29 | 29 |
|
| 30 | 30 |
// Create new database object |
| ... | ... | |
| 118 | 118 |
} |
| 119 | 119 |
} |
| 120 | 120 |
|
| 121 |
?> |
|
| 121 |
?> |
|
| trunk/wb/account/login.php | ||
|---|---|---|
| 1 | 1 |
<?php |
| 2 | 2 |
|
| 3 |
// $Id: login.php,v 1.8 2005/04/16 01:39:06 rdjurovich Exp $
|
|
| 3 |
// $Id$ |
|
| 4 | 4 |
|
| 5 | 5 |
/* |
| 6 | 6 |
|
| ... | ... | |
| 80 | 80 |
require(WB_PATH.'/index.php'); |
| 81 | 81 |
|
| 82 | 82 |
|
| 83 |
?> |
|
| 83 |
?> |
|
Also available in: Unified diff
Added direct access redirection in account files.