My bootstrap login form is currently appearing at the top of the page, but I want it to be centered.
<div class="container">
<div class="row text-center">
<div class="col-sm-6 col-sm-offset-3 well offset4">
<div class="">
<div class="text-warning">
<h3>Login to our site</h3>
<p>Enter your username and password to log in</p>
</div>
</div>
<div class="">
<form role="form" action="" method="post" class="">
<div class="form-group">
<label class="sr-only" for="form-username">Username</label>
<input type="text" name="form-username" placeholder="Username..." class="form-control" id="form-username">
</div>
<div class="form-group">
<label class="sr-only" for="form-password">Password</label>
<input type="password" name="form-password" placeholder="Password..." class="form-control" id="form-password">
</div>
<button type="submit" class="btn btn-warning col-sm-12 mt-2"><strong>Sign in!</strong></button>
</form>
</div>
</div>
</div>
</div>
I'm looking for a way to center this form on the page using Bootstrap or AngularJS. Any suggestions would be appreciated!