diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-05 07:30:30 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-05 07:30:30 -0400 |
commit | 25c78a5963a296bb6809867a8ac82e7202d3b16d (patch) | |
tree | d74c034027ab1b24b56af2fa5f959219eb777d3d /pages/account | |
parent | 3d15233dcbed837e4471d6d75781242e73c2ed9b (diff) | |
download | elgg-25c78a5963a296bb6809867a8ac82e7202d3b16d.tar.gz elgg-25c78a5963a296bb6809867a8ac82e7202d3b16d.tar.bz2 |
Fixes #4060 combined some page handlers for users lib
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/login.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pages/account/login.php b/pages/account/login.php new file mode 100644 index 000000000..14f65cc3f --- /dev/null +++ b/pages/account/login.php @@ -0,0 +1,20 @@ +<?php +/** + * Assembles and outputs a login page. + * + * This page serves as a fallback for non-JS users who click on the login + * drop down link. + * + * If the user is logged in, this page will forward to the front page. + * + * @package Elgg.Core + * @subpackage Accounts + */ + +if (elgg_is_logged_in()) { + forward(''); +} + +$login_box = elgg_view('core/account/login_box'); +$content = elgg_view_layout('one_column', array('content' => $login_box)); +echo elgg_view_page(elgg_echo('login'), $content); |