-
Notifications
You must be signed in to change notification settings - Fork 129
/
support.php
178 lines (167 loc) · 7.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
include_once("GameEngine/Generator.php");
$start_timer = $generator->pageLoadTimeStart();
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename anmelden.php ##
## Developed by: Dzoki ##
## License: TravianX Project ##
## Copyright: TravianX (c) 2010-2011. All rights reserved. ##
## ##
#################################################################################
use App\Utils\AccessLogger;
include_once("GameEngine/Village.php");
AccessLogger::logRequest();
$amount = $_SESSION['amount'];
if(isset($_GET['newdid'])) {
$_SESSION['wid'] = $_GET['newdid'];
header("Location: ".$_SERVER['PHP_SELF']);
exit;
}
else $building->procBuild($_GET);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo SERVER_NAME; ?> - Support Request</title>
<link rel="shortcut icon" href="favicon.ico"/>
<meta name="content-language" content="en" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script src="mt-core.js?0faab" type="text/javascript"></script>
<script src="mt-more.js?0faab" type="text/javascript"></script>
<script src="unx.js?f4b7h" type="text/javascript"></script>
<script src="new.js?0faab" type="text/javascript"></script>
<link href="<?php echo GP_LOCATE; ?>lang/en/compact.css?f4b7i" rel="stylesheet" type="text/css" />
<link href="<?php echo GP_LOCATE; ?>lang/en/lang.css?f4b7d" rel="stylesheet" type="text/css" />
<link href="<?php echo GP_LOCATE ?>travian.css?f4b7d" rel="stylesheet" type="text/css" />
<link href="<?php echo GP_LOCATE ?>lang/en/lang.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
function chkFormular () {
if (document.Formular.Username.value == "") {
alert("Enter your username!");
document.Formular.Username.focus();
return false;
}
if (document.Formular.Emailadress.value == "") {
alert("Enter an emailadress!");
document.Formular.Emailadress.focus();
return false;
}
if (document.Formular.Emailadress.value.indexOf("@") == -1) {
alert("Thats not a valid emailadress!");
document.Formular.Emailadress.focus();
return false;
}
if (document.Formular.Subject.value == "please select") {
alert("Please select an subject!");
document.Formular.Subject.focus();
return false;
}
if (document.Formular.Message.value == "") {
alert("Please enter a message!");
document.Formular.Message.focus();
return false;
}
}
</script>
</head>
<body class="v35 ie ie8">
<div class="wrapper">
<img style="filter:chroma();" src="img/x.gif" id="msfilter" alt="" />
<div id="dynamic_header">
</div>
<?php include("Templates/header.tpl"); ?>
<div id="mid">
<?php include("Templates/menu.tpl"); ?>
<?php include("Templates/support.tpl"); ?>
<h1>Support</h1>
<p>You can use the following form to submit your request to the Support.<br />Please take a bit of time to answer the form questions in as much detail as possible, so that we can answer your request quickly and in length. <br />Please note that without a valid email address, your request will not get processed.
<br><br><b>Bug reports, login errors, general questions and feedback</b></p>
<form name="Formular" class="" method="post" action="mailme.php" onsubmit="return chkFormular()">
<div id="group_support_username">
<table class="form_table form_tablel_support" width="100%">
<tr>
<td class="form_table_label form_table_label_support_username"><label class="form_label" for="element_2">Username </label></td>
<td class="form_table_element form_table_element_support_username"><input id="element_2_1" name= "Username" class="text" type="text" maxlength="255" value=""/></td>
</tr>
</table>
</div>
<div id="group_support_email">
<table class="form_table form_tablel_support" width="100%">
<tr>
<td class="form_table_label form_table_label_support_supportType"><label class="form_label" for="element_3">Email </label></td>
<td class="form_table_element form_table_element_support_email"><input id="element_3" name="Emailadress" class="text" type="text" maxlength="255" value=""/></td>
</tr>
</table>
</div>
<div id="group_support_supportType">
<table class="form_table form_tablel_support" width="100%">
<tr>
<td class="form_table_label form_table_label_support_supportType"><label class="form_label" for="element_7">Category </label></td>
<td class="form_table_element form_table_element_support_supportType"><select id="element_7" name="Subject">
<option value="please select" selected="selected">please select...</option>
<option value="Bugreport" >Bugreport</option>
<option value="General question" >General question</option>
<option value="I cannot login" >I cannot login</option>
<option value="I cannot register an account" >I cannot register an account</option>
<option value="Feedback" >Feedback</option>
</select></td>
</tr>
</table>
</div>
<div id="group_support_message">
<table class="form_table form_tablel_support" width="100%">
<tr>
<td class="form_table_label form_table_label_support_message"><label class="form_label" for="element_6">Message </label></td>
<td class="form_table_element form_table_element_support_message"><textarea id="element_6" name="Message" cols="43" rows="7" label="Message"></textarea></td>
</tr>
</table>
</div>
<br />
<div id="group_support_message">
<table class="form_table form_tablel_support" width="100%">
<tr>
<td><input type="hidden" name="" value="" /><input id="saveForm" class="button_text" type="submit" name="" value="Send form" /></td>
<td><input type="hidden" name="" value="" /><input id="saveForm" class="button_text" type="reset" name="" value="Clear form" /></td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</form>
</div>
<br /><br /><br /><br /><div id="side_info">
<?php
include("Templates/multivillage.tpl");
include("Templates/quest.tpl");
include("Templates/news.tpl");
if(!NEW_FUNCTIONS_DISPLAY_LINKS) {
echo "<br><br><br><br>";
include("Templates/links.tpl");
}
?>
</div>
<div class="clear"></div>
</div>
<div class="footer-stopper"></div>
<div class="clear"></div>
<?php
include("Templates/footer.tpl");
include("Templates/res.tpl");
?>
<div id="stime">
<div id="ltime">
<div id="ltimeWrap">
<?php echo CALCULATED_IN;?> <b><?php
echo round(($generator->pageLoadTimeEnd()-$start_timer)*1000);
?></b> ms
<br /><?php echo SERVER_TIME;?> <span id="tp1" class="b"><?php echo date('H:i:s'); ?></span>
</div>
</div>
</div>
<div id="ce"></div>
</body>
</html>