login project
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Register form</title>
<!-- Boxicons CDN -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<form>
<div class="input-box animation" style="-1:1; -1:22">
<input type="text" required />
<label for="">Username</label>
<i class="bx bxs-user"></i>
</div>
<div class="input-box animation" style="-1:2; -1:23">
<input type="password" required />
<label for="">Password</label>
<i class="bx bxs-Lock-alt"></i>
</div>
<!-- Add input fields for email, confirm password, etc. -->
<!-- Add login/registration buttons here -->
</form>
<script src="script.js"></script>
</body>
</html>