PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Nitesh Apte   Login System   index.php   Download  
File: index.php
Role: Application script
Content type: text/plain
Description: Login Page
Class: Login System
Authenticate users with records in a database
Author: By
Last change:
Date: 14 years ago
Size: 1,299 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict/EN" "http://www.w3.org/TR/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        <head>
            <title>LoginSystem - Login System</title>
                <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
               
               
        </head>
   
        <body>
                <div class="main_body">
               
               
           
            <div style="padding-left:0px; padding-right:80px;padding-top: 0px">
                   
                   
                    <form action="process.php" method="POST">
                        <table align="center">
<tr>
                                <td align="right">
                                    <label class="">Username : </label>
                                </td>
                                <td>
                                    <input type="text" id="u_email" name="u_email" class="text_box">
                                </td>
                                </tr>

                            <tr>
                                <td align="right">
                                    <label class="label">Password : </label>
                                </td>
                                <td>
                                    <input type="password" id="u_pass" name="u_pass" class="text_box">
                                </td>
                            </tr>
                            <tr>
                                <td align="center">
                                   
                                </td>
                                <td style="padding-left:88px;">
                                     <input type="submit" name="action" value="Sign In" title="Sign In" class="submit"/>
                                </td>
                            </tr>
</table>
                    </form>
                    </div>
            </div>
        </body>
    </html>