blob: dd262e061adb1f96d780b2a0bdac6975dc2154e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
$this->styles($this->html->style("/css/signup.css"));
?>
<?php
if (isset($key))
{
echo "Confirmation Link: <a href=\"<?=$link ?>/<?=$key->key ?>\"> Link </a>";
}
else
{
$template = '<tr{:wrap}><td>{:label}</td><td>{:input}</td><td>{:error}</td></tr>';
?>
<?= $this->flashMessage->output(); ?>
<div id="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')) ?>
<?= $this->form->field('email',
array('template' => $template, 'id' => 's_email')) ?>
</table>
<?= $this->form->submit('Signup!'); ?>
<?= $this->form->end(); ?>
</div>
<?php
}
?>
|