-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
38 lines (36 loc) · 1.54 KB
/
create.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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Create</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<link rel="stylesheet" href="create.css">
</head>
<body>
<div id="create">
<h3>Please fill in this form to create a course</h3>
<form action="create.php" method="post">
<div class="form-group">
<p>Title</p>
<input type="text" name="title" placeholder="Enter The Title">
</div>
<div class="form-group">
<p>Enter Description</p>
<input type="text" name="description" placeholder="Enter Description about the course">
</div>
<p>Enter question</p>
<input type="text" name="question" placeholder="Enter Question">
<p>Enter options</p>
<input type="text" name="option1" id="" placeholder="option1">
<input type="text" name="option2" id="" placeholder="option2">
<input type="text" name="option3" id="" placeholder="option3">
<input type="text" name="option4" id="" placeholder="option4">
<p>Enter the correct option</p>
<input type="text" name="correct_option" id="" placeholder="correct answer">
<input type="submit" value="save and next">
</form>
</div>
</body>
</html>