This commit is contained in:
Michelle Aquilera 2025-11-14 16:20:47 +07:00
parent f0b5ae87b6
commit 6bc55406e2
2 changed files with 35 additions and 0 deletions

0
Animation Login.js Normal file
View File

35
Login.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<title>Login Form in HTML</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="particles">
<form action="">
<h1>Login</h1>
<div class="input-box">
<input type="text" placeholder="Username" 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">
<label><input type="checkbox">Remember me</label>
<a href="#">Forgot password?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="register-link">
<p>Don't have an account?<a href="#">Register</a></p>
</div>
</form>
</div>
</body>
</html>