| 1234567891011121314 |
- <?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; ?>
|