Skip to content

Instantly share code, notes, and snippets.

Created November 5, 2011 02:01
Show Gist options
  • Save anonymous/1340975 to your computer and use it in GitHub Desktop.
Save anonymous/1340975 to your computer and use it in GitHub Desktop.
<h1>Sign in</h1>
<?= $this->form('login')->toSelf('post'); ?>
<div class="field">
<?= $this->form()->label('email_addr'); ?>
<?= $this->form()->textField('email_addr'); ?>
</div>
<div class="field">
<?= $this->form()->label('password'); ?>
<?= $this->form()->passwordField('password'); ?>
</div>
<div class="actions">
<?= $this->form()->submit('Sign in'); ?>
</div>
<?= $this->form()->end(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment