Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700"> <title>Bootstrap Classic Sign Up Form with Blue Background</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script> <style> body { color: #fff; background: #3598dc; font-family: 'Roboto', sans-serif; } .form-control { min-height: 41px; box-shadow: none; border-color: #ddd; } .form-control, .btn { border-radius: 3px; } .signup-form { width: 425px; margin: 0 auto; padding: 30px 0; } .signup-form form { color: #999; border-radius: 3px; margin-bottom: 15px; background: #fff; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); padding: 30px; } .signup-form h2 { color: #333; font-weight: bold; margin-top: 0; } .signup-form hr { margin: 0 -30px 20px; } .signup-form .form-group { margin-bottom: 20px; } .signup-form label { font-weight: normal; font-size: 14px; } .signup-form input[type="checkbox"] { margin-top: 6px; } .signup-form .btn { font-size: 16px; font-weight: bold; background: #3598dc; border: none; min-width: 140px; } .signup-form .btn:hover, .signup-form .btn:active { background: #2389cd; outline: none !important; } .signup-form a { color: #fff; text-decoration: underline; } .signup-form a:hover { text-decoration: none; } .signup-form form a { color: #3598dc; text-decoration: none; } .signup-form form a:hover { text-decoration: underline; } </style> </head> <body> <div class="signup-form"> <form action="/examples/actions/confirmation.php" method="post"> <h2>Sign Up</h2> <p>Please fill in this form to create an account!</p> <hr> <div class="form-group"> <label>Username</label> <input type="text" class="form-control" name="username" required="required"> </div> <div class="form-group"> <label>Email Address</label> <input type="email" class="form-control" name="email" required="required"> </div> <div class="form-group"> <label>Password</label> <input type="password" class="form-control" name="password" required="required"> </div> <div class="form-group"> <label>Confirm Password</label> <input type="password" class="form-control" name="confirm_password" required="required"> </div> <div class="form-group form-check"> <input type="checkbox" class="form-check-input" required="required"> <label class="form-check-label">I accept the <a href="#">Terms of Use</a> & <a href="#">Privacy Policy</a></label> </div> <div class="form-group"> <button type="submit" class="btn btn-primary btn-lg">Sign Up</button> </div> </form> <div class="text-center">Already have an account? <a href="#">Login here</a></div> </div> </body> </html>