-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelpcenter.html
124 lines (112 loc) · 4.12 KB
/
helpcenter.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
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
<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>Help Center</title>
<link rel="icon" href="./component/tabIcon.svg" type="image/x-icon">
<!-- Style CSS -->
<link rel="stylesheet" href="./style/helpcenter.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<!-- Sidebar -->
<nav class="sidebar">
<div class="top">
<div class="logo">
<a href="./index.html">
<img src="./component/ungu.svg" alt="">
<span>Jayapura19</span>
</a>
</div>
<!-- Kode Tombol -->
<img src="./component/hide.svg" id="btn" class="rotate" alt="">
</div>
<div class="main-menu">
<p>Main Menu</p>
</div>
<ul>
<li>
<a href="./dashboard.html">
<img src="./component/dashboardIcon.svg" alt="">
<span>Dashboard</span>
</a>
</li>
<li>
<a href="./data.html">
<img src="./component/dataIcon.svg" alt="">
<span>Data</span>
</a>
</li>
</ul>
<div class="preferences">
<p> Preferences</p>
</div>
<ul>
<li>
<a href="./helpcenter.html">
<img src="./component/help.svg" alt="">
<span>Help Center</span>
</a>
</li>
</ul>
</nav>
<!-- End of Sidebar -->
<!-- Main content (Cart & Metrics) -->
<section class="form-container">
<div class="form-header">
<h1>Contact Us</h1>
<p>Please fill out the form below and we'll get back to you shortly.</p>
</div>
<form class="form-body" onsubmit="return myFunction()">
<fieldset class="name-fieldset">
<div class="input-group">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" placeholder="Enter your first name" />
</div>
<div class="input-group">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" placeholder="Enter your last name" />
</div>
</fieldset>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" />
</div>
<div class="input-group">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Enter your message"></textarea>
</div>
<div class="input-group">
<button onclick="myFunction()" type="submit">Submit</button>
</div>
</form>
</section>
<!-- End Main content (Cart & Metrics) -->
<!-- Mobile Navigation -->
<nav class="mobile-nav">
<ul>
<li><a href="./index.html"><img src="./component/logoMenu.svg" alt="Dashboard"></a></li>
<li><a href="./dashboard.html"><img src="./component/dashboardIcon.svg" alt="Dashboard"></a></li>
<li><a href="./data.html"><img src="./component/dataIcon.svg" alt="Data"></a></li>
<li><a href="./helpcenter.html"><img src="./component/help.svg" alt="Help Center"></a></li>
</ul>
</nav>
<!-- End Mobile Navigation -->
<footer class="footer">
<p>
© This website is managed by Team 19 Jayapura
</p>
</footer>
<!-- Script JS -->
<script src="./script/interaction.js"></script>
<!-- Chart.JS -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
function myFunction() {
alert("Terimakasih, keluhan anda sudah kami terima");
return false;
}
</script>
</body>
</html>w