Preview:
<!DOCTYPE html>

<html lang="en">

    <head>

        <meta charset="UTF-">

        <title>Sign Up</title>

        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">

    </head>
8
    <body>

        <div class="container">

            <div class="row">

                <div class="col-md-">
12
                    <h2>Register</h2>

                    <p>Please fill this form to create an account.</p>

                    <form action="" method="post">

                        <div class="form-group">

                            <label>Full Name</label>

                            <input type="text" name="name" class="form-control" required>

                        </div>    

                        <div class="form-group">

                            <label>Email Address</label>

                            <input type="email" name="email" class="form-control" required />

                        </div>    

                        <div class="form-group">

                            <label>Password</label>

                            <input type="password" name="password" class="form-control" required>

                        </div>

                        <div class="form-group">

                            <label>Confirm Password</label>

                            <input type="password" name="confirm_password" class="form-control" required>

                        </div>

                        <div class="form-group">

                            <input type="submit" name="submit" class="btn btn-primary" value="Submit">

                        </div>

                        <p>Already have an account? <a href="login.php">Login here</a>.</p>

                    </form>

                </div>

            </div>

        </div>    

    </body>

</html>
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter