signup.html.php 492 B

1234567891011121314151617
  1. <?php
  2. $this->styles($this->html->style("/css/signup.css"));
  3. ?>
  4. <?php if (isset($key)): ?>
  5. Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a>
  6. <?php else: ?>
  7. <?=$this->flashMessage->output(); ?>
  8. <?=$this->form->create($user); ?>
  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; ?>