-
Notifications
You must be signed in to change notification settings - Fork 1
/
support.html
74 lines (67 loc) · 2.91 KB
/
support.html
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
<!doctype html>
<html lang="en">
<head>
<title>Support - Starshop</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap-dark.css">
<link href="css/custom.css" rel="stylesheet">
<!-- icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<link rel="icon" href="assets/icons/questionmark.png">
<!-- handlebars -->
<script src="js/handlebars.min-v4.7.8.js"></script>
<script src="js/vanilla.js"></script>
<script>
function init() {
// die daten werden aus dem SessionStorage gerendered
const data = JSON.parse(sessionStorage.getItem("supportSubmission"))
render(data, '[type="text/x-handlebars-template"]')
render({}, '[type="text/x-handlebars-navbar"]')
render({}, '[type="text/x-handlebars-footer"]')
}
</script>
</head>
<body onload="init()">
<script id="template" type="text/x-handlebars-navbar">
{{> navbar }}
</script>
<div></div>
<main>
<!-- MARK: Support Card
-->
<section id="Support Card"class="bg-black py-5 star-background">
<div class="container-lg justify-content-center my-4">
<div class="row align-content-center justify-content-center">
<div class="col-lg-8">
<div class="card ">
<div class="card-body ">
<script id="template" type="text/x-handlebars-template">
<h4 class="card-title pb-4 text-center">Question sent - Support is working on a reply </h4>
<p class="card-text text-light"><strong>Email:</strong> {{email}}</p>
<p class="card-text text-light"><strong>Sender:</strong> {{name}}</p>
<p class="card-text text-light"><strong>Subject:</strong> {{subject}}</p>
<p class="card-text text-light"> {{question}}</p>
</script>
<div class="card-body "></div>
<div class="card-footer text-center ">
<a href="index.html#support" class="btn btn-secondary btn-lg">Home</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- MARK: footer
-->
<script id="template" type="text/x-handlebars-footer">
{{> footer }}
</script>
<div></div>
<!-- Bootstrap JavaScript Libraries -->
<script src="js/bootstrap.js"></script>
</body>
</html>