diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-01 01:04:27 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-01 01:04:27 -0400 |
commit | ecf24b77b0caafdedb1d985e695a169b5adddb19 (patch) | |
tree | 9da817d46931868bcdaf20ef10ed5775dfff09b6 /views | |
parent | 0ff7db39992d5511fabf715b6278a3bde65c9c1e (diff) | |
download | otakuhub-ecf24b77b0caafdedb1d985e695a169b5adddb19.tar.xz |
fixed signup bug
Diffstat (limited to 'views')
-rw-r--r-- | views/Users/signup.html.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/views/Users/signup.html.php b/views/Users/signup.html.php index 58aa0b0..4112bdd 100644 --- a/views/Users/signup.html.php +++ b/views/Users/signup.html.php @@ -7,11 +7,8 @@ Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a> <?=$this->form->create(); ?> <?php endif; ?> <?=$this->form->field('username'); ?> - <?=$this->form->field('password', array('type' => 'password')); ?> + <?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?> <?=$this->form->field('email'); ?> - <!-- This needs to be moved to the admin panel - <?=$this->form->select('level', array('User' => 'User', 'Mod' => 'Mod', 'Admin' => 'Admin', 'root' => 'Root'), array('value' => 1)); ?> - --> <?=$this->form->submit('Signup!'); ?> <?=$this->form->end(); ?> <?php endif; ?>
\ No newline at end of file |