In this topic we will create simple registeration form,just used simple html form control like textbox and password filed the following example registeration form.
<html>
<head>
<title>HTML Registeration 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 Registeration Form</h2></td>
</tr>
<form action="post">
<tr>
<td><input type="text" name="fname" placeholder="First Name" class="txt"></td>
</tr>
<tr>
<td><input type="text" name="lname" placeholder="Last Name" class="txt"></td>
</tr>
<tr>
<td><input type="text" name="email" placeholder="Email Address" 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="Register"></td>
</tr>
</form>
</table>
</body>
</html>
Simple Login Form |