-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
205 lines (183 loc) · 10.8 KB
/
index.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
require __DIR__ . "/../../config/bootstrap.php";
redirectOutside();
$tools = getTools_List();
?>
<?php require "../htmlib/header.inc.php"; ?>
<body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white page-container-bg-solid page-sidebar-fixed">
<div class="page-wrapper">
<?php require "../htmlib/top.inc.php"; ?>
<?php require "../htmlib/menu.inc.php"; ?>
<!-- BEGIN CONTENT -->
<div class="page-content-wrapper">
<!-- BEGIN CONTENT BODY -->
<div class="page-content">
<!-- BEGIN PAGE HEADER-->
<!-- BEGIN PAGE BAR -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<span>Helpdesk</span>
<i class="fa fa-circle"></i>
</li>
<li>
<span>Contact form</span>
</li>
</ul>
</div>
<!-- END PAGE BAR -->
<!-- BEGIN PAGE TITLE-->
<h1 class="page-title"> Helpdesk contact form </h1>
<!-- END PAGE TITLE-->
<!-- END PAGE HEADER-->
<div class="row">
<div class="col-md-12">
<?php
$error_data = false;
if ($_SESSION['errorData']) {
$error_data = true;
?>
<?php if ($_SESSION['errorData']['Info']) { ?>
<div class="alert alert-info">
<?php } else { ?>
<div class="alert alert-danger">
<?php } ?>
<?php
foreach ($_SESSION['errorData'] as $subTitle => $txts) {
print "<strong>$subTitle</strong><br/>";
foreach ($txts as $txt) {
print "<div>$txt</div>";
}
}
unset($_SESSION['errorData']);
?>
</div>
<?php } ?>
</div>
</div>
<form name="helpdesk" id="helpdesk" action="applib/openTicket.php" method="post">
<div class="portlet box blue-oleo">
<div class="portlet-title">
<div class="caption">
<div style="float:left;margin-right:20px;"> <i class="fa fa-ticket"></i> Ticket content</div>
</div>
</div>
<div class="portlet-body form">
<div class="form-body">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="control-label">Your name</label>
<input type="text" name="Name" id="Name" value="<?php echo $_SESSION["User"]["Name"] . " " . $_SESSION["User"]["Surname"]; ?>" class="form-control" readonly>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="control-label">Your email</label>
<input type="text" name="Email" id="Email" value="<?php echo $_SESSION["User"]["Email"]; ?>" class="form-control" readonly>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label class="control-label">Type of request</label>
<select name="Request" id="Request" class="form-control">
<option value="">Select a request</option>
<option value="general" <?php if ($_REQUEST["sel"] == "general") { ?>selected<?php } ?>>I have a technical question</option>
<option value="tools" <?php if ($_REQUEST["sel"] == "tools") { ?>selected<?php } ?>>I have an issue related with some tool</option>
<option value="space" <?php if ($_REQUEST["sel"] == "space") { ?>selected<?php } ?>>I need more disk space</option>
<option value="community" <?php if ($_REQUEST["sel"] == "community") { ?>selected<?php } ?>>Register a new community</option>
<!-- <option value="tooldev" <?php
?>selected<?php
?>>I want to become a tool developer</option> -->
</select>
</div>
</div>
</div>
<div class="row display-hide" id="row-tools">
<div class="col-md-12">
<div class="form-group">
<label class="control-label">Tools List</label>
<select name="Tool" id="Tool" class="form-control" disabled>
<option value="">Select a Tool</option>
<?php foreach ($tools as $t) { ?>
<option value="<?php echo $t["_id"]; ?>"><?php echo $t["name"]; ?></option>
<?php } ?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label class="control-label">Subject</label>
<input type="text" name="Subject" id="Subject" class="form-control" placeholder="">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<?php if ($_REQUEST["sel"] != "tooldev") { ?>
<label class="control-label" id="label-msg">Message details</label>
<?php } else { ?>
<label class="control-label" id="label-msg">Please tell us which kind of tool(s) you want to integrate in the VRE</label>
<?php } ?>
<textarea class="form-control" name="Message" id="Message" rows="6"></textarea>
</div>
</div>
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn blue"><i class="fa fa-check"></i> Submit</button>
<button type="reset" class="btn default">Reset</button>
</div>
</div>
</div>
</form>
</div>
<!-- END CONTENT BODY -->
</div>
<!-- END CONTENT -->
<div class="modal fade bs-modal-sm" id="myModal1" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<?php
if (isset($_SESSION['errorData'])) {
?>
<div class="alert alert-warning">
<?php foreach ($_SESSION['errorData'] as $subTitle => $txts) {
?>
<h4 class="modal-title"><?php echo $subTitle; ?></h4>
</div>
<div class="modal-body">
<?php foreach ($txts as $txt) {
print $txt . "</br>";
} ?>
</div>
<div class="modal-footer">
<button type="button" class="btn dark btn-outline" data-dismiss="modal">Accept</button>
</div>
<?php
}
unset($_SESSION['errorData']);
?>
<?php } ?>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<div class="modal fade bs-modal-sm" id="myModal5" tabindex="-1" role="basic" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<?php
require "../htmlib/footer.inc.php";
require "../htmlib/js.inc.php";
?>