- We can either create the form using the html input tags
<form method="post" action="verification.php">
Username <input type= "text" name= "username" size= " 15 " title= "Your username" />
Password <input type= "password" name= "password" size= " 15 " title= "Your password"/>
<input type= "submit" name= "login" value= "Login" title= "Click to login" />
</form>
This will generate a form looking like this :
- Or we can do so using tables
<table border= " 0 ">
<form method="POST" action="verification.php">
<tr><td>Username<input type= "text" name= "username" size= " 15 " title= "Your username" /></td></tr>
<tr><td>Password<input type= "password" name= "password" size= " 15 " title= "Your password"></td></tr>
<tr><td> </td><td> </td><td><input type= "submit" name= "login" value= "Login" title= "Click to login" /></td></tr>
</form>
</table>
This will generate a form looking like this :