diff options
author | raylu <raylu@mixpanel.com> | 2011-07-03 23:21:32 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-04 00:27:32 -0700 |
commit | 8fc399621803ddec4e2a0253c0f8ffa14e972a14 (patch) | |
tree | f7a5cd85534bd6f550f064dcd7518006ec0c6837 /views/users | |
parent | 1df4b751cea6ec01ee18c66b8f30937e0339c01a (diff) | |
download | otakuhub-8fc399621803ddec4e2a0253c0f8ffa14e972a14.tar.xz |
preliminary redesign of stuff above the fold
Diffstat (limited to 'views/users')
-rw-r--r-- | views/users/signup.html.php | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/views/users/signup.html.php b/views/users/signup.html.php index 4112bdd..920827a 100644 --- a/views/users/signup.html.php +++ b/views/users/signup.html.php @@ -11,4 +11,27 @@ Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a> <?=$this->form->field('email'); ?> <?=$this->form->submit('Signup!'); ?> <?=$this->form->end(); ?> -<?php endif; ?>
\ No newline at end of file +<?php endif; ?> + +<!-- + <div id="signup"> + <h2>Sign up:</h2> + <form method="post" action="/users/signup"> + <table> + <tr> + <td><label for="username">Username</label></td> + <td><input type="text" name="username" id="username"> + </tr> + <tr> + <td><label for="password">Password</label></td> + <td><input type="password" id="password" name="password"></td> + </tr> + <tr> + <td><label for="email">Email</label></td> + <td><input type="text" id="email" name="email"></td> + </tr> + </table> + <input class="button green" type="submit" value="Sign up"> + </form> + </div> +--> |