Create a Login System Using HTML, PHP, and MySQL

PHOTO EMBED

Sun Feb 09 2025 05:18:51 GMT+0000 (Coordinated Universal Time)

Saved by @isaac #undefined

<!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>
content_copyCOPY

https://dzone.com/articles/ceate-a-login-system-using-html-php-and-mysql