aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-05 07:30:30 -0400
committerCash Costello <cash.costello@gmail.com>2011-11-05 07:30:30 -0400
commit25c78a5963a296bb6809867a8ac82e7202d3b16d (patch)
treed74c034027ab1b24b56af2fa5f959219eb777d3d /pages
parent3d15233dcbed837e4471d6d75781242e73c2ed9b (diff)
downloadelgg-25c78a5963a296bb6809867a8ac82e7202d3b16d.tar.gz
elgg-25c78a5963a296bb6809867a8ac82e7202d3b16d.tar.bz2
Fixes #4060 combined some page handlers for users lib
Diffstat (limited to 'pages')
-rw-r--r--pages/account/login.php20
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);