-
Notifications
You must be signed in to change notification settings - Fork 0
/
access-denied.php
executable file
·26 lines (25 loc) · 1.01 KB
/
access-denied.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Simple PHP Polling System Access Denied</title>
<link href="css/user_styles.css" rel="stylesheet" type="text/css" />
</head>
<body bgcolor="tan">
<center><b><font color = "brown" size="6">Simple PHP Polling System</font></b></center><br><br>
<body>
<div id="page">
<div id="header">
<h1>Access Denied</h1>
<a href="student.php">Home</a> | <a href="vote.php">Current Polls</a> | <a href="manage-profile.php">Manage My Profile</a>
</div>
<div id="container">
<div class="err">Access Denied!</div>
<p>You don't have access to this resource. <a href="login.html">Click here</a> to login first.</p>
</div>
<div id="footer">
<div class="bottom_addr">© 2012 Simple PHP Polling System. All Rights Reserved</div>
</div>
</div>
</body>
</html>