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 pathkill.php
More file actions
51 lines (51 loc) · 1.62 KB
/
kill.php
File metadata and controls
51 lines (51 loc) · 1.62 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
<?php
require_once('pageIncludes/kill.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 - Log A Kill</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">
<?php
if(isset($GLOBALS['killNotification']) && $GLOBALS['killNotification']!="") echo $GLOBALS['killNotification']."<br/>";
if(isLoggedIn()){
?>
<form action="" method="post">
Kill ID: <input name="killID"></input>
<br/><br/>
Optionally, include a description of the location of this kill in the box below. Be as detailed as you'd like.<br/>
<textarea name="killLocation" style="width: 410px; height: 100px;"></textarea>
<input type="submit" name="submit" value="Submit"/>
</form>
<?php }else{?>
<h3>Please log in to log your kill.</h3>
<?php }?>
</div>
<div id="sidebar">
<div class="section1">
<?php displayLoginForm();?>
</div>
<br />
<div class="section4">
<?php retrieveSlides();?>
</div>
</div>
<div class="clearfix"> </div>
</div>
<div id="footer" class="container">
<?php printFooter(); ?>
</div>
</div>
</body>
</html>