-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.html
38 lines (35 loc) · 1.38 KB
/
report.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/nprogress.css">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="./assets/css/report.css">
<title>Report Content</title>
<script src="./assets/js/localforage.js"></script>
</head>
<body>
<div class="wrapper">
<h1>Report Content</h1>
<div class="contentContainer">
<div class="loadingContent">
<img class="roundedGif10px" src="./assets/image/loading.gif" alt="Loading Content" height="100" width="100" title="Loading Content">
<span>Loading Content</span>
</div>
</div>
<span class="errorMessage"></span>
<div class="reportContainer">
<textarea placeholder="Why do you want to report this content?" class="textbox"></textarea>
<span class="buttonToReport noselect" title="Report Content">Report</span>
</div>
</div>
<div class="reportSuccessful">
<img src="./assets/image/done.gif" height="150" width="150" alt="Report Submitted">
<span>Report submitted. Thank you!</span>
</div>
<script src="./assets/js/nprogress.js"></script>
<script src="./assets/js/functions.js"></script>
<script src="./assets/js/report.js"></script>
</body>
</html>