"Untitled"
Bootstrap 4.1.1 Snippet by danielfino

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>User Profile</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> </head> <body> <div class="container"> <h1>User Profile</h1> <div class="row"> <div class="col-sm-6"> <h3>Name:</h3> <p>John Doe</p> <h3>Email:</h3> <form> <div class="form-group"> <input type="email" class="form-control" id="email" placeholder="john.doe@example.com"> </div> </form> </div> <div class="col-sm-6"> <h3>Subscriptions:</h3> <form> <div class="form-check"> <input class="form-check-input" type="checkbox" id="subscriptionA" checked> <label class="form-check-label" for="subscriptionA"> Technology </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="subscriptionB"> <label class="form-check-label" for="subscriptionB"> Clothing </label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="subscriptionC" checked> <label class="form-check-label" for="subscriptionC"> Sports </label> </div> </form> </div> </div> <button type="submit" class="btn btn-primary">Save Changes</button> <br> <br><br> <div class="row"> <div class="col-sm-6"> <h3>Bid History:</h3> <table class="table"> <thead> <tr> <th>Auction ID</th> <th>Product Name</th> <th>Highest Bid</th> <th>Time Left</th> </tr> </thead> <tbody> <tr> <td>#123</td> <td>Monitor</td> <td>$100</td> <td>2h 13m</td> </tr> <tr> <td>#456</td> <td>Jacket</td> <td>$50</td> <td>Finished</td> </tr> </tbody> </table> </div> <div class="col-sm-6"> <h3>Auctions Created:</h3> <table class="table"> <thead> <tr> <th>Auction ID</th> <th>Product Name</th> <th>Starting Bid</th> <th>Time Left</th> </tr> </thead> <tbody> <tr> <td>#789</td> <td>Mousepad</td> <td>$10</td> <td>Finished</td> </tr> <tr> <td>#987</td> <td>Jeans</td> <td>$50</td> <td>Finished</td> </tr> </tbody> </table> </div> </div> </div>

Related: See More


Questions / Comments: