signup.html.php 476 B

1234567891011121314
  1. <?php if (isset($key)): ?>
  2. Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
  3. <?php else: ?>
  4. <?php if(isset($user)): ?>
  5. <?=$this->form->create($user); ?>
  6. <?php else: ?>
  7. <?=$this->form->create(); ?>
  8. <?php endif; ?>
  9. <?=$this->form->field('username'); ?>
  10. <?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?>
  11. <?=$this->form->field('email'); ?>
  12. <?=$this->form->submit('Signup!'); ?>
  13. <?=$this->form->end(); ?>
  14. <?php endif; ?>