blob: 5b26977278935b7ff9e82d22e4890ccb7417f7a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
$this->styles($this->html->style("/css/signup.css"));
?>
<?php if (isset($key)): ?>
Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
<?php else: ?>
<?=$this->flashMessage->output(); ?>
<?=$this->form->create($user); ?>
<?=$this->form->field('username'); ?>
<?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?>
<?=$this->form->field('email'); ?>
<?=$this->form->submit('Signup!'); ?>
<?=$this->form->end(); ?>
<?php endif; ?>
|