-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteach.html
More file actions
149 lines (122 loc) · 6.01 KB
/
Copy pathteach.html
File metadata and controls
149 lines (122 loc) · 6.01 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Imprints</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/imprints.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navbar -->
<section id="header">
<a href="index.html"><img src="images/imprints.png" class = "logo" alt=""></a>
<div>
<ul id = "navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="teach.html" class = "active">Teach on Imprints</a></li>
<div id = "close"><i class="fa fa-times"></i></div>
</ul>
</div>
<div id = "mobile">
<i id = "bar" class="fa fa-outdent"></i>
</div>
</section>
<!-- About banner -->
<section id = "banner4">
<h2 style="font-size: 40px;">Teach on Imprints</h2>
<h4>Fill the form below and get an estimated price for your course</h4>
</section>
<!-- Form -->
<section class="section-p1 section-m1" id = "form">
<form action="/predict" method="POST">
<div class="input">
<label for="student">Are you making your course for students?</label>
<br>
<input type="radio" id="student1" name = 'student' class="validate" value = "Yes" required>
<label for="Yes">Yes</label><br>
<input type="radio" id="student2" name = 'student' class="validate" value = "No" required>
<label for="No">No</label><br><br><br>
</div>
<div class="input">
<label for="format">Which format will your courses mostly be in?</label>
<br>
<input type="radio" id="format1" name = 'format' class="validate" value = "Video" required>
<label for="Video">Video</label><br>
<input type="radio" id="format2" name = 'format' class="validate" value = "Audio" required>
<label for="Audio">Audio</label><br>
<input type="radio" id="format3" name = 'format' class="validate" value = "Document" required>
<label for="Document">Document</label><br>
<input type="radio" id="format4" name = 'format' class="validate" value = "None of the above" required>
<label for="None of the above">None of the above</label><br><br><br>
</div>
<div class="input">
<label for="instructor">Are you providing this course on behalf of an organization or are you an individual instructor?</label>
<br>
<input type="radio" id="instructor1" name = 'instructor' class="validate" value = "Organizations" required>
<label for="Organizations">Organization</label><br>
<input type="radio" id="instructor2" name = 'instructor' class="validate" value = "Individual Instructors" required>
<label for="Individual Instructors">Individual Instructor</label><br><br><br>
</div>
<div class="input"></div>
<label for="hours">How many hours do you expect your students to dedicate per week?<br>(Choose between 1 to 10)</label><br>
<input type="number" id="hours" name="hours" min="1" max="10" required><br><br><br>
</div>
<div class="input"></div>
<label for="courses">How many courses do you expect your students to study at a time?<br>(Choose between 1 to 5)</label><br>
<input type="number" id="hours" name="hours" min="1" max="5" required><br><br><br>
</div>
<div class="input">
<label for="categories">Choose a category for your course</label><br>
<select id="categories" name="categories" required>
<option value="Business">Business</option>
<option value="Finance & Accounting">Finance & Accounting</option>
<option value="IT & Software">IT & Software</option>
<option value="Personality Development">Personality Development</option>
<option value="Design">Design</option>
<option value="Photography & Video">Photography & Video</option>
<option value="Health & Fitness">Health & Fitness</option>
<option value="Data Science">Data Science</option>
</select>
<br><br>
</div>
<div class="submit">
<button type="submit">Predict</button>
</div><br>
<br>
</form>
</section>
<footer class = "section-p1">
<div class = "col">
<img src="images/imprints.png" alt="">
</div>
<div class="col">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="courses.html">Feedback</a></li>
</ul>
</div>
<div class="col">
<h4>Follow Us</h4>
<div class="icon">
<i class="fa fa-facebook-official"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-pinterest"></i>
<i class="fa fa-youtube-play"></i>
</div>
</div>
<div class="copyright">
<p>© 2022, Imprints - Liberty at its best</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>