Horje

Create HTML Login form

Copy and Paste Following code to index.html This will be your Login form where, you will put username and password
index.html
Example: HTML
<form action="login.php" method="post" name="Login_Form">
  <table width="400" border="0" align="center" cellpadding="5" cellspacing="1" class="Table">
    <?php if(isset($msg)){?>
    <tr>
      <td colspan="2" align="center" valign="top"><?php echo $msg;?></td>
    </tr>
    <?php } ?>
    <tr>
      <td colspan="2" align="left" valign="top"><h3>Login</h3></td>
    </tr>
    <tr>
      <td align="right" valign="top">Username</td>
      <td><input name="Username" type="text" class="Input"></td>
    </tr>
    <tr>
      <td align="right">Password</td>
      <td><input name="Password" type="password" class="Input"></td>
    </tr>
    <tr>
      <td> </td>
      <td><input name="Submit" type="submit" value="Login" class="Button3"></td>
    </tr>
  </table>
</form>




Single Articles
Create HTML Login formPHP Login Tutorial
Create PHP File for Login Check User and PasswordPHP Login Tutorial
Now, Create Login redirect PagePHP Login Tutorial
Finally, Create a pgae to logoutPHP Login Tutorial


Related Articles
How to Login Without Database PHP Login Tutorial

Type:
Html
Category:
Web Tutorial
Sub Category:
PHP Login Tutorial
Uploaded by:
Admin



Share on: