-
Notifications
You must be signed in to change notification settings - Fork 236
/
report.html
62 lines (61 loc) · 1.76 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Report Issues</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/common.css">
<style>
h2 {
margin-top: 15px;
margin-bottom: 20px;
}
.container {
min-width: 400px;
}
.status {
display: none;
}
button.close {
float: right;
display: none;
}
.dark-mode .close {
color: white;
}
</style>
<script src="js/jquery-3.7.1.min.js"></script>
<script src="js/defaults.js"></script>
<script src="js/report.js"></script>
</head>
<body>
<div class="container">
<button type="button" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h2>Report Issue</h2>
<form>
<div class="form-group">
<label for="txt-url">I was reading this URL</label>
<input id="txt-url" type="text" class="form-control" maxlength="500" />
</div>
<div class="form-group">
<label for="txt-comment">This issue occurs</label>
<textarea id="txt-comment" class="form-control" rows="3" maxlength="1000"></textarea>
<small class="form-text text-muted">
Please include your email if you wish to follow up.
</small>
</div>
<div class="form-group">
<button id="btn-submit" type="button" class="btn btn-primary">Submit</button>
<img id="img-spinner" class="status" src="img/loading.gif" />
</div>
<div class="form-group">
<div id="lbl-status" class="status alert alert-success"></div>
<div id="lbl-error" class="status alert alert-danger"></div>
</div>
</form>
</div>
</body>
</html>