diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-10 00:36:26 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-10 00:36:26 -0400 |
commit | 821f6d08f47778e430c1368ad9b3fd5c2c9d70fb (patch) | |
tree | 74d52e5bafcd721726544d71351a9f946f26df59 /views/users | |
parent | cfba0ecd08b5af5a56cfdfe3e5225ae98f5107da (diff) | |
download | otakuhub-821f6d08f47778e430c1368ad9b3fd5c2c9d70fb.tar.xz |
Moved signup stuff to it's own controller
Diffstat (limited to 'views/users')
-rw-r--r-- | views/users/confirm.html.php | 1 | ||||
-rw-r--r-- | views/users/signup.html.php | 17 |
2 files changed, 0 insertions, 18 deletions
diff --git a/views/users/confirm.html.php b/views/users/confirm.html.php deleted file mode 100644 index cd0a6a7..0000000 --- a/views/users/confirm.html.php +++ /dev/null @@ -1 +0,0 @@ -<p>Thanks for signing up. Please check your email to confirm your registration. If you lost you key click <a href = "/signup/reconfirm">here </a> to have it resent</p> diff --git a/views/users/signup.html.php b/views/users/signup.html.php deleted file mode 100644 index 5b26977..0000000 --- a/views/users/signup.html.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php -$this->styles($this->html->style("/css/signup.css")); -?> - -<?php if (isset($key)): ?> -Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a> -<?php else: ?> -<?=$this->flashMessage->output(); ?> - - -<?=$this->form->create($user); ?> - <?=$this->form->field('username'); ?> - <?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?> - <?=$this->form->field('email'); ?> - <?=$this->form->submit('Signup!'); ?> -<?=$this->form->end(); ?> -<?php endif; ?>
\ No newline at end of file |