blob: 4112bdd9522233bae68c9eee0236df07d71e48a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php if (isset($key)): ?>
Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
<?php else: ?>
<?php if(isset($user)): ?>
<?=$this->form->create($user); ?>
<?php else: ?>
<?=$this->form->create(); ?>
<?php endif; ?>
<?=$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; ?>
|