Last active
January 29, 2016 15:02
-
-
Save fideloper/5387858 to your computer and use it in GitHub Desktop.
Login View for Laravel 4 Uber Quick-Start Guide
This file contains 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="container"> | |
<form class="form-signin form-horizontal" method="post" action="/login"> | |
<h2 class="">Please sign in</h2> | |
<div class="control-group "> | |
<label class="control-label" for="email">Email:</label> | |
<div class="controls"> | |
<input type="text" id="email" name="email" placeholder="Email address" value=""> | |
</div> | |
</div> | |
<div class="control-group "> | |
<label class="control-label" for="password">Password:</label> | |
<div class="controls"> | |
<input type="password" id="password" name="password" placeholder="Password" value=""> | |
</div> | |
</div> | |
<button class="btn btn-large btn-primary" type="submit">Sign in</button> | |
</form> | |
</div> <!-- /container --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment