HTML - Login Form

In this topic we will create simple login form,just used simple html form control like textbox and password filed the following example login form.


login.htm


<html>
<head>
<title>HTML Login Form>/title>
<style>
.txt
{
	width:300px;
	height:50px;
}
.btn
{
	width:80px;
	height:50px;
}
</style>
</head>
<body>
<table border="0" width="100%">
<tr>
<td align="center"><h2>Simple Login Form</h2></td>
</tr>
<tr>
<form action="post">
<td><input type="text" name="uname" placeholder="Username" class="txt"></td>
</tr>
<td><input type="password" name="pass" placeholder="Password" class="txt"></td>
</tr>
<tr>
<td align="right"><input type="submit" name="btnsubmit" value="Login"></td>
</tr>
</form>
</table>
</body>
</html>							
							

Simple Login Form

Share Share on Facebook Share on Twitter Share on LinkedIn Pin on Pinterest Share on Stumbleupon Share on Tumblr Share on Reddit Share on Diggit

You may also like this!