-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteacher.html
More file actions
36 lines (36 loc) · 2.15 KB
/
teacher.html
File metadata and controls
36 lines (36 loc) · 2.15 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
<!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>Document</title>
<link rel="stylesheet" href ="css/custom/teacher.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/5.0.4/firebase.js"></script>
<script src="js/custom/utils/utils.js"></script>
<script src="js/custom/controller/teachercontroller.js"></script>
<script src="js/custom/model/question.js"></script>
<script src="js/custom/model/teacherOperation.js"></script>
</head>
<body>
<div class="container">
<div id="teacher-setdata">
<div style="margin-top: 20px"><input type="text" id="searchquestionid" placeholder="Type To Search By QuestionId" class="d-inline form-control">
<button id="search" class="btn btn-primary d-inline">Search</button></div>
<br>
<hr>
<h2>Write Questions To Be Presented In The Paper</h2>
<textarea placeholder="Type Question" cols="115" rows="10" id="question">
</textarea>
<br>
<input class="options" type="text" placeholder="Type Option 1" id="Option1"class="form-control d-inline" >
<input class="options" type="text" placeholder="Type Option 2" id="Option2"class="form-control d-inline" >
<input class="options" type="text" placeholder="Type Option 3" id="Option3"class="form-control d-inline" >
<input class="options" type="text" placeholder="Type Option 4" id="Option4"class="form-control d-inline" >
<input type="text" placeholder="Type Ans" id="ans"class="form-control d-inline" >
<button id="add" class="btn btn-success d-inline">Add</button>
</div></div>
</body>
</html>