step2.html.php 582 B

123456789101112
  1. <?=$this->flashMessage->output(); ?>
  2. <?=$this->form->create(); ?>
  3. <?=$this->form->field('Name'); ?>
  4. <!-- put a label here -->
  5. <?=$this->form->text("What's your birthday>"); ?>
  6. <?=$this->form->field('day', array('type' => 'text')); ?>
  7. <?=$this->form->field('month', array('type' => 'text')); ?>
  8. <?=$this->form->field('year', array('type' => 'text')); ?>
  9. <?=$this->form->field('location', array('type' => 'text')) ?>
  10. <?=$this->form->select('gender', array('Male' => 'Male', 'Female' => 'Female')); ?>
  11. <?=$this->form->submit('Create my account!'); ?>
  12. <?=$this->form->end(); ?>