-
Notifications
You must be signed in to change notification settings - Fork 340
/
index.html
129 lines (128 loc) · 4.31 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
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
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Semicolon | video request</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
</head>
<body>
<div class="container my-5">
<div class="formContainer my-5">
<form action="" method="POST">
<div class="row">
<div class="col-md">
<div class="form-group">
<label for="author_name">Your name *</label>
<input
class="form-control"
name="author_name"
placeholder="Write your name here"
/>
</div>
</div>
<div class="col-md">
<div class="form-group">
<label for="author_email">Your email *</label>
<input
class="form-control"
name="author_email"
placeholder="Write your email here"
/>
</div>
</div>
</div>
<hr />
<div class="row">
<div class="col-md">
<div class="form-group">
<label for="topic_title">Topic *</label>
<input
class="form-control"
name="topic_title"
placeholder="Write your suggested topic here"
/>
</div>
</div>
<div class="col-md">
<div class="form-group">
<label for="target_level">Target level</label>
<select
class="form-control"
name="target_level"
placeholder="Write your name here"
>
<option value="begineer">Beginner</option>
<option value="medium">Medium</option>
<option value="advanced">Advanced</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md">
<div class="form-group">
<label for="topic_details">More details *</label>
<textarea
class="form-control"
name="topic_details"
placeholder="Write your topic in more details here"
></textarea>
</div>
</div>
<div class="col-md">
<div class="form-group">
<label for="expected_result">Expected results</label>
<textarea
class="form-control"
name="expected_result"
placeholder="Write what do you expect after watching this video"
></textarea>
</div>
</div>
</div>
<button type="submit" class="btn btn-success mt-3">
Send video request
</button>
</form>
</div>
<hr />
<h1 class="mb-4">List of requested videos</h1>
<div id="listOfRequests">
<div class="card mb-3">
<div class="card-body d-flex justify-content-between flex-row">
<div class="d-flex flex-column">
<h3>Dummy Topic title</h3>
<p class="text-muted mb-2">dummy topic details</p>
<p class="mb-0 text-muted">
<strong>Expected results:</strong> Dummy expected result text
</p>
</div>
<div class="d-flex flex-column text-center">
<a class="btn btn-link">🔺</a>
<h3>0</h3>
<a class="btn btn-link">🔻</a>
</div>
</div>
<div class="card-footer d-flex flex-row justify-content-between">
<div>
<span class="text-info">NEW</span>
• added by <strong>Fake Name</strong> on
<strong>Sat Apr 11 2020</strong>
</div>
<div
class="d-flex justify-content-center flex-column 408ml-auto mr-2"
>
<div class="badge badge-success">
Beginners
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>