"User profile in tabs"
Bootstrap 2.3.2 Snippet by heherbertzhang

<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="well"> <h2>Edit Profile</h2> <ul class="nav nav-tabs"> <li class="active"><a href="#home" data-toggle="tab">Profile</a></li> <li><a href="#profile" data-toggle="tab">Password</a></li> </ul> <div id="myTabContent" class="tab-content"> <div class="tab-pane active in" id="home"> <img class="img-circle" src=""></img> <label>Email</label> <input type="text" value="jsmith@yourcompany.com" class="input-xlarge" readonly> <form id="tab"> <label>Username</label> <input type="text" class="input-xlarge"> <label>Description</label> <textarea rows="3" class="input-xlarge"> </textarea> <div> <input type="submit" class="btn btn-primary" value ="Update"> </div> </form> </div> <div class="tab-pane fade" id="profile"> <form id="tab2"> <label>Old Password</label> <input type="password" class="input-xlarge" name="oldpass"> <label>New Password</label> <input type="password" class="input-xlarge" name ="newpass"> <label>Confirm Password</label> <input type="password" class="input-xlarge" name="confirmpass"> <div> <input type="submit" class="btn btn-primary" value ="Update"> </div> </form> </div> </div>

Related: See More


Questions / Comments: