Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IgnacioCastro0713/671a3effb546b6b229410b2d27459316 to your computer and use it in GitHub Desktop.
Save IgnacioCastro0713/671a3effb546b6b229410b2d27459316 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container" style="margin-top: 25px;">
<form class="form-horizontal col-md-offset-3 col-md-6" action="#">
<div class="form-group">
<label for="fname" class="control-label col-sm-3">First Name</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="fname" placeholder="First name">
</div>
</div>
<div class="form-group">
<label for="lname" class="control-label col-sm-3">Last Name</label>
<div class="col-sm-9">
<input type="text" class="form-control" id="lname" placeholder="Last name">
</div>
</div>
<div class="form-group">
<label for="email" class="control-label col-sm-3">Email</label>
<div class="col-sm-9">
<input type="email" class="form-control" id="email" placeholder="Your email">
</div>
</div>
<div class="form-group">
<label for="password" class="control-label col-sm-3">Password</label>
<div class="col-sm-9">
<input type="email" class="form-control" id="password" placeholder="Your password">
</div>
</div>
<div class="form-group row">
<div class="offset-sm-3 col-sm-9 pull-right">
<button type="submit" class="btn btn-default">Sign up</button>
</div>
</div>
</form>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment