-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.php
79 lines (55 loc) · 1.62 KB
/
support.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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
session_start();
//WE NEED THE FOLLOWING VARIABLES FOR THE SYSTEM TO WORK PROPERLY. THESE VALUES HAVE TO COME FROM THE LOGIN PAGE
/*$_SESSION['eventID']="";
$_SESSION['eventName']="2011 GRAND Conference";
$_SESSION['eventKey']="GRAND";
$_SESSION['accountID']="";
$_SESSION['userKey']="";
*/
//These are variables for the navigation flow, NOT for the functionality of the system
$_SESSION['menu']="support";
$_SESSION['submenu']="";
//This has to be in all the pages
$rel_path_img="_src/_img/";
$rel_path_js="_src/_js/";
$rel_path_css="_src/_css/";
$rel_path_php="_src/_php/";
$rel_path_menulinks="";
/////////////////////////////////
include($rel_path_php."header.php");
?>
<!-- HERE I CAN INCLUDE ANY OTHER SPECIFIC LIBRARIES FOR THIS PAGE -->
</head>
<body>
<?php include($rel_path_php."logo.php"); ?>
<!-- SPLIT DIV -->
<div id="splitdiv">
<?php include($rel_path_php."menu.php"); ?>
<!-- CONTENT-LEFT -->
<div id="leftcontent">
<br>
<!-- PARAGRAPH 1 -->
<span class="title">Support</span><br />
<br />
If you are having problems with the system, contact us at <a href='mailto:[email protected]'>grand-qr-support</a>.
<br /><br />
This website is mobile. Try it in your mobile device.
<br>
<br>
<hr class="page-splits"><br>
<a href="http://ssrg.cs.ualberta.ca"> http://ssrg.cs.ualberta.ca </a> - 2011
</div>
<!-- CONTENT-RIGHT -->
</div>
<!-- CONTENT-LEFT -->
<!-- CONTENT-RIGHT -->
<div id="rightcontent">
</div>
<!-- CONTENT-RIGHT -->
</div>
<!-- SPLIT DIV -->
<br>
<?php include($rel_path_php."footer.php"); ?>
</body>
</html>