<!DOCTYPE html> <html> <body> <form> <h1>Login Form</h1> <label><b>Username</b></label> <input type="text" placeholder="Enter Username" name="uname" required><br><br> <label><b>Password</b></label> <input type="password" placeholder="Enter Password" name="psw" required><br><br> <button type="submit">Login</button><button type="button" class="cancelbtn">Cancel</button><br> <input type="checkbox" checked="checked"> Remember me<br> <span class="psw">Forgot <a href="#">password?</a></span> </form> </body> </html>