forked from Umbc-HvZ-Web-Committee/Website-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.php
More file actions
56 lines (50 loc) · 1.39 KB
/
Copy pathdev.php
File metadata and controls
56 lines (50 loc) · 1.39 KB
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
<?php
require_once('pageIncludes/dev.inc.php');
?>
<!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><?php placeTabIcon(); ?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>UMBC HvZ</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="/style.css" rel="stylesheet" type="text/css" media="all" />
<link href='https://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'/>
<?php htmlHeader(); ?>
</head>
<body>
<div id="wrapper">
<?php pageHeader(); ?>
<div id="page" class="container">
<div id="content">
<script type="text/javascript">
var pass = prompt("Password:");
if(pass != "OZ") {
alert("Password incorrect. Redirecting to umbchvz.com");
window.location="http://umbchvz.com";
}
</script>
<div><h1 style="text-align:center;">Welcome to UMBC HvZ!</h1>
</div>
</div>
<div id="sidebar">
<div class="section1">
<?php displayLoginForm();?>
</div>
<br />
<div class="section4">
<?php retrieveSlides();?>
</div>
<div class="section2">
</div>
<div class="section3">
</div>
</div>
<div class="clearfix"> </div>
</div>
<div id="footer" class="container">
<?php printFooter(); ?>
</div>
</div>
</body>
</html>