-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse_refused.php
More file actions
60 lines (48 loc) · 1.17 KB
/
response_refused.php
File metadata and controls
60 lines (48 loc) · 1.17 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
57
58
59
60
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<?php
// Defined variables:
// $in_userIGN
// $reason
?>
<head>
<title>MRT Server Member Application</title>
<!-- Javascript -->
<script language="javascript" type="text/javascript"
src="js/display.js"></script>
<script language="javascript" type="text/javascript">
onResize = function() {
fixContentHeight();
}
onLoad = function() {
fixContentHeight();
}
</script>
<!-- -->
<!-- CSS -->
<link rel="stylesheet" type="text/css"
href="style.css"/>
<!--[if !IE 7]>
<style type="text/css">
#container {
display: table;
height: 100%;
}
</style>
<![endif]-->
<!-- -->
</head>
<body onresize="onResize()" onload="onLoad()">
<div id="container">
<div id="header"><div id="headerContents">
</div></div>
<div id="contents">
<p>Sorry, <?php echo $in_userIGN; ?>, but your application has not been submitted. The reason is specified below.</p>
<span class="error"><?php echo $reason; ?></span>
</div>
<div id="footer">
Copyright MRT Server 2012
</div>
</div>
</body>
</html>