PHP Classes

File: example3/login.php

Recommend this page to a friend!
  Classes of Abhishek Shukla   Simple XML User System   example3/login.php   Download  
File: example3/login.php
Role: Auxiliary script
Content type: text/plain
Description: Template script
Class: Simple XML User System
Manage users storing their records in XML files
Author: By
Last change:
Date: 8 years ago
Size: 1,187 bytes
 

Contents

Class file image Download
<!DOCTYPE html>

<?php if(!defined("SIMPLE_USERSYETEM"))die("Unauthorised Access!!!");
?><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Simple User System Class</title>
<link href="example3/style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="header">
    <h1><a href="#">Simple User System</a></h1>
    <h2>By Abhishek Shukla</h2>
</div>
<div id="menu">
    <ul>
    </ul>
</div>
<hr />
<div id="latest-post" class="post" style="min-height:300px">
    <h1 class="title"><a href="#">Please Login</a></h1>
    <form method="POST" action="?"><table><tr><td><p>User ID:</p></td><td>
            <input type="text" name="u" value=""></td></tr>
            <tr><td><p>Password:</p></td><td><input type="password" name="p" value=""></td></tr>
            <tr><td><input type="submit" name="btnsubmit" value="Login!!">
            </td></tr></table></form>
</div>
<div id="recent-posts">
    <h2>&nbsp;</h2>
</div>
<hr />
<div id="footer">
    <p class="legal">Copyright &copy; Sitename.com </p>
    <p class="credit">Site Maintained by <a href="#">XYZ</a> </p>
</div>

</body>
</html>