OneCompiler

Fayera

109
<!DOCTYPE html> <html lang=""en"> <head> <meta charset="UTF-8"> <meta http-equity=""-UA-compitable" content=""IE=edge"> <meta name=""wiewport" content=""widhth=device-widht,initial-scale=1.0"> <titleLogin Form in HTML and CSS | codehal</title> <link rel="stylesheet" href=""style.css'> <link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet' </head>
<body>

    <div class=""wrapper">
        <form action="">
            <h2>Login</h2>
            <div class=""input-box">
                <input type="'text" placeholder="User name" required>
                <i class='bx bxs-user'></i>
            </div>
            <div class="input-box">
                <input type=""password" placeholder="password" required>
                <i class='bx bxs-lock-alt'></i>
            </div>

            <div class="remember-forgot">
                <lable><input type="checkbox"> Remember me</lable>
                <a href="#">Forgot password?</a>
            </div>

            <button type="Submit" class=""btn">Login<</button>

            <div class=""register-link">
                <p>Dont have an account? <a href="#">Regester</a></p>
            </div>
        </form>
    </div>

</body>
</html>