-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponse_submitted.php
More file actions
58 lines (46 loc) · 1.14 KB
/
response_submitted.php
File metadata and controls
58 lines (46 loc) · 1.14 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
<!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
?>
<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">
Thank you, <?php echo $in_userIGN; ?>, for submitting an application for membership. We will review your application and let you know if it is approved.
</div>
<div id="footer">
Copyright MRT Server 2012
</div>
</div>
</body>
</html>