Skip to content

Instantly share code, notes, and snippets.

@albertpeiro
Last active August 29, 2015 14:10
Show Gist options
  • Save albertpeiro/3b1ce497583522c7fdb8 to your computer and use it in GitHub Desktop.
Save albertpeiro/3b1ce497583522c7fdb8 to your computer and use it in GitHub Desktop.
The motherfucking chochoerrata responsive form
<!-- Ass-kicking html5 -->
<head>
<!-- BOOTSTRAP -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
</head>
<body>
<!-- Learn some bootstrap bitch! http://getbootstrap.com/css/#forms-horizontal -->
<form class="form-horizontal" role="form">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment