login.html.php 304 B

1234567
  1. <?=$this->flashMessage->output(); ?>
  2. <?=$this->form->create(); ?>
  3. <?=$this->form->field('username'); ?>
  4. <?=$this->form->field('password', array('type' => 'password')); ?>
  5. <?=$this->form->field('remember', array('type' => 'checkbox')); ?>
  6. <?=$this->form->submit('Login!'); ?>
  7. <?=$this->form->end(); ?>