|
@@ -1,8 +1,6 @@
|
|
|
<?php
|
|
<?php
|
|
|
-$this->styles($this->html->style("/css/signup.css"));
|
|
|
|
|
-?>
|
|
|
|
|
|
|
+$this->styles($this->html->style("/css/login_signup.css"));
|
|
|
|
|
|
|
|
-<?php
|
|
|
|
|
if (isset($key))
|
|
if (isset($key))
|
|
|
{
|
|
{
|
|
|
echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>";
|
|
echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>";
|
|
@@ -14,13 +12,13 @@ else
|
|
|
<?= $this->flashMessage->output(); ?>
|
|
<?= $this->flashMessage->output(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
- <div id="signup">
|
|
|
|
|
|
|
+ <div id="login_signup">
|
|
|
<?= $this->form->create($user); ?>
|
|
<?= $this->form->create($user); ?>
|
|
|
<table>
|
|
<table>
|
|
|
<?= $this->form->field('username',
|
|
<?= $this->form->field('username',
|
|
|
array('template' => $template, 'id' => 's_username')) ?>
|
|
array('template' => $template, 'id' => 's_username')) ?>
|
|
|
<?= $this->form->field('newpass',
|
|
<?= $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',
|
|
<?= $this->form->field('email',
|
|
|
array('template' => $template, 'id' => 's_email')) ?>
|
|
array('template' => $template, 'id' => 's_email')) ?>
|
|
|
</table>
|
|
</table>
|