Simple HTML LogIn form in table

<html>
     <head>
         <title> Login</title>
    </head>
    <body>
          <form action="#" method="get" align="center">
                   <center><h2> LogIn</h2></center>
               <table >
                    <tr>
                          <td> Enter Email : </td><td><input type="text" name="email"></td>
                   </tr>
                   <tr>
                          <td> Password : </td><td> <input type="password" name="password"></td>
                   </tr>
                   <tr>
                         <td colspan="2" align="center"><input type="submit" name="submit" value="LogIn"></td>
                   </tr>
               </table>
           </from>
      </body>
</html>


Output :
                          


Comments

Popular Posts