diff options
Diffstat (limited to 'views/signup/index.html.php')
-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> |