Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@
<body>
<div class="wrapper">
<form action="">
<h1>Login </h1>
<h1>Login</h1>
<img src="/assets/logo.png" alt="">
<div class="input-box">
<input type="text" placeholder="Username" required>
<input type="text" placeholder="Username" autocomplete="off" 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>
<input type="password" id="password" placeholder="Password" autocomplete="off" required>
<i class='bx bxs-lock-alt'></i>
<i class='bx bxs-show' id="togglePassword" style="cursor: pointer;"></i>
</div>
<div class="remember-forgot">
<label><input type="checkbox">Remember Me</label>
<label><input type="checkbox"> Remember Me</label>
<a href="#">Forgot Password</a>
</div>
<button type="submit" class="btn">Login</button>
Expand All @@ -40,4 +41,4 @@ <h1>Login </h1>


</body>
</html>
</html>