Advertisement
Guest User

Untitled

a guest
Apr 10th, 2012
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <div class="users form">
  2. <?php echo $this->Session->flash('auth'); ?>
  3. <?php echo $this->Form->create('User');?>
  4.     <fieldset>
  5.         <legend><?php echo __('Please enter your username and password'); ?></legend>
  6.     <?php
  7.         echo $this->Form->input('username');
  8.         echo $this->Form->input('password');
  9.     ?>
  10.     </fieldset>
  11. <?php echo $this->Form->end(__('Login'));?>
  12. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement