Struggling to align my form data in the center below. I have attempted various online solutions without success. The use of bootstrap and offset is causing issues with the title for the form and the actual form itself. Any suggestions would be highly appreciated!
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<form class="form-horizontal" >
<div class="form-group">
<label class="col-sm-2 control-label">NetID</label>
<div class="col-sm-3">
<input class="form-control" name="name" id="name" type="text" placeholder="Enter their netid" onkeyup="showUser(this.value)">
</div>
</div>
<center><div id="txtHint"><b>Enter the users netid, and their history is below:</b></div></center><br/>
<div class="form-group">
<label for="gender" class="col-sm-2 control-label">Cable Length</label>
<div class="col-sm-3">
<select id="gender" class="form-control">
<option value="14ft">14ft</option>
<option value="25ft">25ft</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>