aboutsummaryrefslogtreecommitdiff
path: root/views/default/account/forms/useradd.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/account/forms/useradd.php')
-rw-r--r--views/default/account/forms/useradd.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/views/default/account/forms/useradd.php b/views/default/account/forms/useradd.php
deleted file mode 100644
index f5957d6df..000000000
--- a/views/default/account/forms/useradd.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
- /**
- * Elgg add user form.
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Marcus Povey
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
-
- $admin_option = false;
- if (($_SESSION['user']->admin) && ($vars['show_admin']))
- $admin_option = true;
-?>
-
-
- <div id="add-box">
- <h2><?php echo elgg_echo('adduser'); ?></h2>
- <form action="<?php echo $vars['url']; ?>action/useradd" method="POST">
- <p><label><?php echo elgg_echo('name'); ?>: <input name="name" type="text" class="general-textarea" /></label><br />
- <label><?php echo elgg_echo('email'); ?>: <input name="email" type="text" class="general-textarea" /></label><br />
- <label><?php echo elgg_echo('username'); ?>: <input name="username" type="text" class="general-textarea" /></label><br />
- <label><?php echo elgg_echo('password'); ?>: <input name="password" type="password" class="general-textarea" /></label><br />
- <label><?php echo elgg_echo('passwordagain'); ?>: <input name="password2" type="password" class="general-textarea" /></label><br />
- <?php
- if ($admin_option) {
-?>
- <label><?php echo elgg_echo('admin_option'); ?> <input type="checkbox" name="admin" /></label> <br />
-<?php
- }
- ?>
- <input type="submit" name="submit" class="submit_button" value="<?php echo elgg_echo('adduser'); ?>" /></p>
- </form>
- </div> \ No newline at end of file