-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.2 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Report your Issues : Scdev</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="form-outer">
<h2>What's happening ?</h2>
<small>Check all that apply</small>
<form action="#" class="form">
<div class="form-group">
<div class="inp-sec">
<input type="checkbox" id="videoprob" value="videoprob">
</div>
<div class="inp-desc">
<label for="videoprob">Video Problem</label>
<p>Blury , cut off or looks strange in some way</p>
</div>
</div>
<div class="form-group">
<div class="inp-sec">
<input type="checkbox" id="videoprob" value="videoprob">
</div>
<div class="inp-desc">
<label for="videoprob">Audio Problem</label>
<p>Hard to hear, not matched with video, or missing in some parts.</p>
</div>
</div>
<div class="form-group">
<div class="inp-sec">
<input type="checkbox" id="videoprob" value="videoprob">
</div>
<div class="inp-desc">
<label for="videoprob">Subtitles or caption Problem</label>
<p>Missing, hard to read , not matched with sound , misspellings, or poor translations</p>
</div>
</div>
<div class="form-textarea">
<h3>It's something else ?</h3>
<textarea name="problem" id="problem" cols="60" rows="5" placeholder="Let's know whta's going on"></textarea>
</div> <br>
<button class="form-btn" type="submit">Submit Report</button>
</form>
</div>
<div class="cross-btn">
<i class="fas fa-window-close"></i>
</div>
</body>
</html>