-
Notifications
You must be signed in to change notification settings - Fork 12
/
support.php
41 lines (37 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<?php
include 'search_form.php';
if(!isset($_SESSION['email']))
header("location:index.php");?>
<title>Lebens</title>
<link href="profile.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row">
<?php include 'sidebar.php';?>
<div class="col-sm-9 ">
<div class="container-fluid">
<form action="support_script.php" method="POST">
<h1>Customer Support</h1>
<p style="float:right"><a href="support_current.php">View current query</a></p>
<p style="float:right"><a href="support_old"> View Old query/</a></p>
<h5 class="text-warning">post your queries here we will address them as soon as possible</h5>
<div class="form-group">
Subject:<div class="text-danger"><?php if(isset($_GET['error'])) echo htmlspecialchars($_GET['error']) ;?></div>
<input type="text" class="form-control" name="sub">
</div>
<div class="form-group">
Message:<div class="text-danger"><?php if(isset($_GET['error2'])) echo htmlspecialchars($_GET['error2']) ;?></div>
<textarea name="message"></textarea>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>