aboutsummaryrefslogtreecommitdiff
path: root/views/default/account/forms/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/account/forms/login.php')
-rw-r--r--views/default/account/forms/login.php35
1 files changed, 0 insertions, 35 deletions
diff --git a/views/default/account/forms/login.php b/views/default/account/forms/login.php
deleted file mode 100644
index 87dd6d5ad..000000000
--- a/views/default/account/forms/login.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php
-/**
- * Elgg login form
- *
- * @package Elgg
- * @subpackage Core
- */
-?>
-
-<p class='loginbox'>
- <label><?php echo elgg_echo('loginusername'); ?></label>
- <?php echo elgg_view('input/text', array('internalname' => 'username', 'class' => 'login-textarea')); ?>
- <label><?php echo elgg_echo('password'); ?></label>
- <?php echo elgg_view('input/password', array('internalname' => 'password', 'class' => 'login-textarea')); ?>
-
- <?php echo elgg_view('input/submit', array('value' => elgg_echo('login'))); ?>
-
- <span class='rememberme'>
- <label>
- <input type="checkbox" name="persistent" value="true" />
- <?php echo elgg_echo('user:persistent'); ?>
- </label>
- </span>
-
- <?php echo elgg_view('login/extend'); ?>
-
-<?php
- if ($CONFIG->allow_registration) {
- echo '<a class="registration_link" href="' . elgg_get_site_url() . 'pg/register/">' . elgg_echo('register') . '</a> | ';
- }
-?>
- <a class="forgotten_password_link" href="<?php echo elgg_get_site_url(); ?>pages/account/forgotten_password.php">
- <?php echo elgg_echo('user:password:lost'); ?>
- </a>
-</p> \ No newline at end of file