Skip to content

Instantly share code, notes, and snippets.

@skyler
Forked from anonymous/login.php
Created December 20, 2011 17:55
Show Gist options
  • Save skyler/1502508 to your computer and use it in GitHub Desktop.
Save skyler/1502508 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