-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.54 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<html>
<head>
<link href="css/user_styles.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" src="js/user.js">
</script>
</head>
<body bgcolor="tan">
<center><a href="https://sourceforge.net/projects/pollingsystem/"><img src="images/logo.gif" alt="site logo"></a>
</center><br>
<center><b>
<font color="brown" size="6">Simple PHP Polling System</font>
</b></center><br><br>
<div id="page">
<div id="header">
<h1>Student Login </h1>
<div class="news">
<marquee>New polls are up and running. But they will not be up forever! Just Login and then go to
Current Polls to vote for your favourate candidates. </marquee>
</div>
</div>
<div id="container">
<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<form name="form1" method="post" action="checklogin.php" onsubmit="return loginValidate(this)">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="tan">
<tr>
<td width="78">Username/Email</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="password" id="mypassword"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>
<center>
<br>Not yet registered? <a href="registeracc.php"><b>Register Here</b></a>
<br>Return to <a href="http://www.anu.ac.ke"><b>ANU Home Page</b></a>
</center>
</div>
<div id="footer">
<div class="bottom_addr">© 2012 Simple PHP Polling System. All Rights Reserved</div>
</div>
</div>
</body>
</html>