Created
August 12, 2012 03:44
-
-
Save BBonifield/3329496 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="staff form"> | |
<?php echo $this->Session->flash('auth'); ?> | |
<?php echo $this->Form->create('Staff'); ?> | |
<fieldset> | |
<legend><?php echo __('Please enter your username and password'); ?></legend> | |
<?php | |
echo $this->Form->input('username'); | |
echo $this->Form->input('password'); | |
?> | |
</fieldset> | |
<?php echo $this->Form->end(__('Login')); ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment