diff options
author | raylu <raylu@mixpanel.com> | 2011-07-10 17:31:57 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-10 17:36:52 -0700 |
commit | de4d4edbcd7a6920d628d466283a7cc781a1e946 (patch) | |
tree | 1676c63304b41bdc7d7c2155bc91784aac678c0b /views/signup | |
parent | 461ada92d70011c5de9673723668d8de185e0fcb (diff) | |
download | otakuhub-de4d4edbcd7a6920d628d466283a7cc781a1e946.tar.xz |
use signup style for login page; add remember me to login popup
Diffstat (limited to 'views/signup')
-rw-r--r-- | views/signup/index.html.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/views/signup/index.html.php b/views/signup/index.html.php index dd262e0..6a00ff2 100644 --- a/views/signup/index.html.php +++ b/views/signup/index.html.php @@ -1,8 +1,6 @@ <?php -$this->styles($this->html->style("/css/signup.css")); -?> +$this->styles($this->html->style("/css/login_signup.css")); -<?php if (isset($key)) { echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>"; @@ -14,13 +12,13 @@ else <?= $this->flashMessage->output(); ?> - <div id="signup"> + <div id="login_signup"> <?= $this->form->create($user); ?> <table> <?= $this->form->field('username', array('template' => $template, 'id' => 's_username')) ?> <?= $this->form->field('newpass', - array('template' => $template, 'id' => 's_password', 'label' => 'Password')) ?> + array('template' => $template, 'id' => 's_password', 'label' => 'Password', 'type' => 'password')) ?> <?= $this->form->field('email', array('template' => $template, 'id' => 's_email')) ?> </table> |