Skip to content

Instantly share code, notes, and snippets.

@reepush
Created July 18, 2017 09:24
Show Gist options
  • Save reepush/fb35efceec76d4d04c108749915ca92f to your computer and use it in GitHub Desktop.
Save reepush/fb35efceec76d4d04c108749915ca92f to your computer and use it in GitHub Desktop.
Login page
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.form-signin {
max-width: 330px;
margin: auto;
margin-top: 100px;
}
</style>
<div class="container">
<form class="form-signin">
<label for="inputEmail" class="sr-only">Email address</label>
<input type="text" name="email" class="form-control" placeholder="Email address">
<label for="inputPassword" class="sr-only">Password</label>
<input type="password" name="password" class="form-control" placeholder="Password">
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment