Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created February 4, 2010 16:20
Show Gist options
  • Select an option

  • Save walesmd/294816 to your computer and use it in GitHub Desktop.

Select an option

Save walesmd/294816 to your computer and use it in GitHub Desktop.
<?php echo form_open('accounts/index') . PHP_EOL; ?>
<?php if (authentication_errors()): ?>
<p class="error"><?php echo authentication_errors(); ?></p>
<?php endif; ?>
<p><label for="account-email">Your email address:</label><br />
<input type="text" id="account-email" name="email" /></p>
<p><label for="account-password">Your password:</label><br />
<input type="password" id="account-password" name="password" /></p>
<p><input type="submit" value="Login" /></p>
<?php echo form_close() . PHP_EOL; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment