-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddQuestions.jsp
More file actions
86 lines (54 loc) · 1.96 KB
/
Copy pathAddQuestions.jsp
File metadata and controls
86 lines (54 loc) · 1.96 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
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
<title>Insert title here</title>
</head>
<body>
<br><br>
<form class="form-horizontal" action="/Test/addQuest">
<div class="form-group">
<label class="control-label col-xs-4">Enter Question no</label>
<div class="col-xs-6">
<input type="text" class="form-control " name="QNo">
</div>
</div>
<div class="form-group">
<label class="control-label col-xs-4">Enter Question </label>
<div class="col-xs-6">
<input type="text" class="form-control " name="Question">
</div>
</div>
<div class="form-group">
<label class="control-label col-xs-4">Enter QuestionType </label>
<div class="col-xs-6">
<select name="QType">
<option value="p">Performance Parameters</option>
<option value="t">Team</option>
<option value="o">Overall</option>
</select>
</div>
</div>
<div class="form-group">
<label class="control-label col-xs-4">Enter role </label>
<div class="col-xs-6">
<select name="Role">
<option value="r1">Role 1</option>
<option value="r2">Role 2</option>
<option value="r3">Role 3</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-xs-offset-2 col-xs-10">
<center><br><br><br><button type="submit" class="btn btn-primary">Submit</button>
</center>
</div>
</div>
</form>
</body>
</html>