forked from iamsushank/mutual-cart-3380
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supportpage.html
75 lines (75 loc) · 2.69 KB
/
supportpage.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
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Support | My Hours</title>
<link rel="stylesheet" href="supportpage.css">
<link rel="stylesheet" href="/header.css">
<link rel="stylesheet" href="/footer.css">
<link
rel="icon"
href="https://gdm-catalog-fmapi-prod.imgix.net/ProductLogo/b5f28d17-3a80-4bf3-aa0c-82ca5cdcccf2.png?w=100&q=50"
type="image/x-icon"
/>
</head>
<body>
<div id="navbar"> </div>
<div id="content">
<h1>We're here</h1>
<h2 class="content-h2">
We typically respond in less than 24 hours on business days. Contact us
via email, live chat or the form below.
</h2>
<p>
<a
href="https://help.myhours.com/en/?_ga=2.266096971.5131411.1658208313-1044255821.1658208313"
>Read our help guides</a
> or send us a message to get detailed help.
</p>
<div id="video">
<center>
<iframe
src="https://share.descript.com/embed/Wy9xHyM18c8"
frameborder="0"
width="780"
height="440"
allowfullscreen
style="outline: rgb(255, 0, 0) dashed 1px"
></iframe>
</center>
</div>
<br>
<br>
<hr>
<form>
<h2 class="content-h2">What do you need help with?</h2>
<div id="form-data">
<select name="" id="form-details">
<option class="optn">I have a question before signing up...</option>
<option class="optn">I can't access my account...</option>
<option class="optn">Something might be broken...</option>
<option class="optn">I have a billing question...</option>
<option class="optn">Other</option>
</select>
<label for="message">Message</label>
<textarea name="message" id="message" maxlength="5000" placeholder="Type Here" ></textarea>
<label for="name">Name</label>
<input type="text" id="name" placeholder="Enter Your Name Here" />
<label for="name">Email Address</label>
<input type="email" id="email" placeholder="Enter Your email Here" />
<!-- If possible add reCapcha here -->
</div>
<button id="submit" type="submit">Send</button>
</form>
</div>
<div id="main-footer"> <div>
</body>
</html>
<script type="module" >
import navbar from "./header.js"
document.getElementById('navbar').innerHTML=navbar();
import footer from "./footer.js"
document.getElementById('main-footer').innerHTML=footer();
</script>