Created
February 4, 2010 16:20
-
-
Save walesmd/294816 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
| <?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