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.
<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 |