GLASS EFFECT LOGIN PAGE HTML

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Document</title>
</head>
<body>
    <div class="glass-container">
        <div class="login-box">
            <h2>Login</h2>
            <form action="#" method="post">

                <input type="text" id="username" required placeholder="username">

                <input type="password" id="password" required placeholder="Password">

                <div class="options">
                    <input type="checkbox" name="Remember" id="Remember me">
                    <label for="Remember">Remember me</label>
                    <a href="#">Forgot Password?</a>
                </div>
                <button type="submit">Log in</button>

                <p>Don't have an account? <a href="#" id="register">Register</a></p>
            </form>
        </div>
    </div>
</body>
</html>

Comments