Skip to content

Instantly share code, notes, and snippets.

@fideloper
Last active January 29, 2016 15:02
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save fideloper/5387858 to your computer and use it in GitHub Desktop.
Save fideloper/5387858 to your computer and use it in GitHub Desktop.
Login View for Laravel 4 Uber Quick-Start Guide
<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