0% found this document useful (0 votes)
17 views1 page

User Login Form HTML Template

This document is an HTML code for a login page. It includes a form for users to enter their username and password, with options to remember the user and a link for password recovery. The form submits data to 'action_page.php' using the POST method.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views1 page

User Login Form HTML Template

This document is an HTML code for a login page. It includes a form for users to enter their username and password, with options to remember the user and a link for password recovery. The form submits data to 'action_page.php' using the POST method.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<!-- Our code will go here -->
<form action="action_page.php" method="post">
<div class="imgcontainer">
<img src="img_avatar2.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw"
required>
<button type="submit">Login</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember
me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#">password?</a></span>
</div>
</form>
</body>
</html>

You might also like