-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.php
149 lines (131 loc) · 6.23 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
<!DOCTYPE html>
<?php include('api/configurePage.php');
?>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./style-css/Feedback_Like_Positive_Message.png" sizes="18x18">
<title>Support</title>
<!-- Bootstrap core CSS -->
<link href="./style-css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./style-css/dashboard.css" rel="stylesheet">
<link href="./style-css/animate.css" rel="stylesheet">
<p class="sr-only">navbar navbar-expand-md d-flex flex-column flex-md-row align-items-center p-3 px-md-4 bg-white fixed-top</p>
</head>
<body class="bg-light">
<nav class="navbar navbar-expand bg-white">
<img class="d-block" src="./style-css/Feedback_Like_Positive_Message.png" alt="" width="60" height="60">
<h5 class="my-0 mr-md-auto font-weight-bold p-2 text-dark">SayYourMind</h5>
<nav class="my-2 my-md-0 mr-md-3">
<a id="dashboardbtn" class="p-2 text-dark" href="dashboard.php" style="visibility: <?php echo $dashboardVis?>">Dashboard</a>
<a class="p-2 text-dark" href="<?php echo $homeLink ?>">Home</a>
<a class="p-2 text-dark" href="<?php echo $featuresLink ?>">Features</a>
<a class="p-2 text-dark" href="<?php echo $pricingLink ?>">Pricing</a>
<a class="p-2 " href="<?php echo $supportLink ?>">Support</a>
</nav>
<a id="logBtn" class="btn btn-outline-primary" href="<?php echo $buttonHRef; ?>"><?php echo $buttonName; ?></a>
</nav>
</header>
<div class="container">
<div class="py-5 text-center">
<img class="d-block mx-auto mb-4" src="./style-css/Feedback_Like_Positive_Message.png" alt="" width="90" height="90">
<h2>Support form</h2>
<p class="lead">For any questions you might have please complete the following form: </p>
</div>
<div class="row">
<div class="col-md-8 order-md-1 mx-auto">
<form class="needs-validation" novalidate="">
<div class="row">
<div class="col-md-6 mb-3">
<label for="firstName">First name</label>
<input type="text" class="form-control" id="firstName" placeholder="" value="" required="">
<div class="invalid-feedback">
Valid first name is required.
</div>
</div>
<div class="col-md-6 mb-3">
<label for="lastName">Last name</label>
<input type="text" class="form-control" id="lastName" placeholder="" value="" required="">
<div class="invalid-feedback">
Valid last name is required.
</div>
</div>
</div>
<div class="mb-3">
<label for="username">Username </label>
<div class="input-group">
<div class="input-group-prepend">
</div>
<input type="text" class="form-control" id="username" placeholder="Username" required="">
</div>
</div>
<div class="mb-3">
<label for="email">Email </label>
<input type="email" class="form-control" id="email" placeholder="[email protected]">
<div class="invalid-feedback">
Please enter a valid email address for shipping updates.
</div>
</div>
<div class="row">
<div class="col-md-10 mb-3">
<label for="question">Type of question</label>
<select class="custom-select d-block" style="width: 100%" id="quesitonType" required="">
<option value="">Choose one of the following question type ...</option>
<option value="1">Information request</option>
<option value="2">Positions open for hiring</option>
<option value="3">Suggestions for new features</option>
<option value="4">Complaint</option>
</select>
<div class="invalid-feedback">
Please select a valid option.
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 mb-3">
<label for="firstName">Please introduce your question below</label>
<textarea class="form-control" rows="3" id="question" placeholder="" value="" required="" style="height:70px; max-height:200px;" ></textarea>
<div class="invalid-feedback">
Question field is empty.
</div>
</div>
</div>
<hr class="mb-4">
<button class="btn btn-primary btn-lg btn-block" id="respBtn">Submit</button>
</form>
</div>
</div>
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1 text-black">© 2018-2019 Andrei & Raul</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="index.php">Home</a></li>
<li class="list-inline-item"><a href="features.php">Features</a></li>
<li class="list-inline-item"><a href="pricing.php">Pricing</a></li>
</ul>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./style-css/jquery-3.3.1.slim.min.js.download" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
<script src="./style-css/popper.min.js.download"></script>
<script src="./style-css/bootstrap.min.js.download"></script>
<script src="./style-css/holder.min.js.download"></script>
<script>
Holder.addTheme('thumb', {
bg: '#55595c',
fg: '#eceeef',
text: 'Thumbnail'
});
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="./js/bootstrap-notify.js"></script>
<script src="./js/bootstrap-notify.min.js"></script>
<script src="./js/getSession.js"></script>
<script src="./js/logOut.js"></script>
<script src="./js/request.js"></script>
<script src="./js/support.js"></script>
</body></html>