-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.html
More file actions
60 lines (53 loc) · 2.38 KB
/
Copy pathreport.html
File metadata and controls
60 lines (53 loc) · 2.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StickerShop - Report issue</title>
<link rel="stylesheet" href="/assets/styles/report.css">
</head>
<body>
<section class="whole-page">
<!-- Menu for desktop -->
<section>
<h2><a href="#" class="logo">StickerShop</a></h2>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="tutorial.html">How to use StickerShop</a></li>
<!-- <li><a href="purchased-stickers.html">Purchased stickers</a></li> -->
<li><a href="report.html" class="active">Send feedback</a></li>
<button id="logout-btn">Log out <!-- Log out icon --></button>
</ul>
</section>
<main>
<form>
<p>We'd like to improve <span class="highlight">StickerShop</span> to your satisfaction. Send any
issues,
bug experienced on your usage, or any feature you'd like being added to <span
class="highlight">StickerShop</span>.</p>
<label for="report-message">Write issue, bug experienced, any improvement suggestion or what you think about StickerShop:</label>
<textarea name="report-message" id="report-message" cols="30" rows="10"
placeholder="I really love StickerShop!!!" required></textarea>
<button class="form-btn">Send →</button>
</form>
</main>
</section>
<section class="dialog-box hide">
<span class="message"></span>
<span class="hide-btn">×</span>
</section>
<!-- Menu for mobile -->
<section class="menu">
<ul id="menu-list" class="d-none">
<li><a href="index.html">Home</a></li>
<li><a href="tutorial.html">How to use StickerShop</a></li>
<!-- <li><a href="purchased-stickers.html">Purchased stickers</a></li> -->
<li><a href="report.html" class="active">Send feedback</a></li>
<button class="logout-btn">Log out <!-- Log out icon --></button>
</ul>
</section>
<span class="menu-btn">☰</span>
<span class="close-btn">×</span>
<script src="/assets/scripts/report.js" type="module"></script>
</body>
</html>