-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
33 lines (31 loc) · 859 Bytes
/
login.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<title>Login Page</title>
<?php include "header.php";
include "connect.php";
mysql_query("DROP TABLE local"); ?>
<marquee>Login Page for Project Report 2016-17</marquee><br>
<p><form action='submit.php' method='POST'>
<link rel='stylesheet' href='style.css'>
<br/><br/><br/>
<table align='center' width='20%' height='10'>
<tr>
<td><font size='4' family="times new roman">Username</font></td>
<td>:</td>
<td><input type='text' name=uname class='text'></td>
</tr>
<tr>
<td><font size='4' family="times new roman">Password</font></td>
<td>:</td>
<td><input type='password' name=pass class='text'></td>
</tr>
</table>
<style>
</style>
<p><center><input type='submit' value='Login' class='button'></p><br>
</form>
<br/><br/>
<form action="home.html">
<input type='submit' value="Click here to go to Home Page" class='button1'>
</form>
</body>
</html>