-
Notifications
You must be signed in to change notification settings - Fork 0
/
createCourseOutline.php
587 lines (528 loc) · 31.5 KB
/
createCourseOutline.php
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
<?php
include 'connect.php';
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Employee Dashboard</title>
<!--Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="courseOutline.css">
<link rel="stylesheet" href="questionform.css">
</head>
<body>
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<div class="nav-title">
SPMS 3.0
</div>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<ul>
<li><a href="employee_dashboard.php" target="_self">Dashboard</a></li>
<li><a href="exam.php" target="_self">Exam</a></li>
<li><a href="createCourseOutline.php" target="_self">Create Course Outline</a></li>
<li><a href="viewCourseOutline.php" target="_self">View Course Outline</a></li>
<li><a href="logout.php" target="_self">Logout</a></li>
</ul>
</div>
</div>
<form action="createCourseOutlineConfig.php" method="post">
<div style="margin-top:10px;" class="course_outline_head">
<div class="rectangle"><p class=text_of_headers>Course Outline</p></div>
<table>
<tr>
<th>Course Code</th>
<td><input type="text" class="course-title" placeholder="Enter Course Code" name="courseCode"></td>
<th>Course Title</th>
<td><input type="text" class="course-title" placeholder="Enter Course Title" name="courseTitle"></td>
</tr>
<tr>
<th>Section</th>
<td><input type="text" class="course-title" placeholder="Enter Section" name="secNum"></td>
<th>Prerequisite(if any)</th>
<td><input type="text" class="course-title" placeholder="Enter Prerequisite" name="prerequisite"></td>
</tr>
<tr>
<th>Credit Value</th>
<td><input type="text" class="course-title" placeholder="Enter Credit Value" name="creditValue"></td>
<th>Semester</th>
<td><input type="text" class="course-title" placeholder="Enter Semester" name="semesterName"></td>
</tr>
</table>
</div>
<div class="course_description">
<div class="rectangle"><p class=text_of_headers>Course Description</p></div>
<textarea name="courseDescription" class="text-area" cols="30" rows="10" placeholder="Enter Course Description"></textarea>
</div>
<div class="course_objective">
<div class="rectangle"><p class=text_of_headers>Course Objective</p></div>
<textarea name="courseObjective" class="text-area" cols="30" rows="10" placeholder="Enter Course Objective"></textarea>
</div>
<div class="course_policy">
<div class="rectangle"><p class=text_of_headers>Course Policy</p></div>
<p>a. It is the student’s responsibility to gather information about the assignments/project and cover topics
during the lectures missed. Regular class attendance is mandatory. Points will be taken off for missing
classes. Without 70% of attendance, sitting for the final exam is NOT allowed. Students should come on
time to get the attendance. In the event of failing 70% of attendance, a student will receive a W grade
automatically.
<br>
b. Same project work is assigned to all sections. Students should work in groups for the project. They are
required to prepare a final report on the project which will be incrementally developed through
assignments.
<br>
c. The date and syllabus of class tests, Mid-Term and Final-Term will be announced in the class. There is NO
provision for make-up.
<br>
d. Both the Mid-Term and Final-Term exams will be coordinated exams and will be held on a specific date
for all the sections.
<br>
e. The reading materials for each class will be given prior to that class so that students may have a cursory
look into the materials.
<br>
f. Class participation is vital for a better understanding of the topics of this course. Students are invited to
raise questions.
<br>
g. Students should take tutorials with the instructor during office hours. Prior appointment is required.
<br>
h. Students must maintain the IUB code of conduct and ethical guidelines offered by the school of computer
science and engineering.
<br>
i. No working mobile phones are allowed in class. Using one for any purpose will result in serious
consequences.
</p>
</div>
<div class="academic_dishonesty">
<div class="rectangle"><p class=text_of_headers>ACADEMIC DISHONESTY</p></div>
<p> a. A student who cheats, plagiarizes, or furnishes false, misleading information in the course is subject to
disciplinary action up to and including an F grade in the course and/or suspension/expulsion from the
University.
<br>
b. Students must maintain the code of IUB.
<br>
c. The goal of homework is to give you practice in mastering the course material. Consequently, you are
encouraged to collaborate on problem sets. In fact, students who form study groups generally do better on
exams than do students who work alone. If you do work in a study group, however, you owe it to yourself
and your group to be prepared for your study group meeting. Specifically, you should spend at least 30-45
minutes trying to solve each problem beforehand by yourself. If your group is unable to solve a problem,
talk to other groups or ask your recitation instructor or teaching assistant assigned to your class.
<br>
d. You must write up each problem solution by yourself without assistance. It is a violation of this policy to
submit a problem solution that you cannot orally explain to a member of the course staff.
<br>
e. No collaboration whatsoever is permitted during examination.
<br>
f. Plagiarism and other anti-intellectual behavior cannot be tolerated in any academic environment that
prides itself on individual accomplishment. If you have any questions about the collaboration policy, or if
you feel that you may have violated the policy, please talk to one of the course staff. Although the course
staff is obligated to deal with cheating appropriately, we are more understanding and lenient if we find out
from the transgressor himself or herself rather than from a third party or by ourselves.
</p>
</div>
<div class="student_with_disability_and_stress">
<div class="rectangle"><p class=text_of_headers>STUDENT WITH DISABILITIES AND STRESS</p></div>
<p>Students with disabilities are required to inform the Department of Computer Science & Engineering of any
specific requirement for classes or examination as soon as possible. Additionally, if you experience significant
stress or worry, changes in mood, or problems eating or sleeping this semester, whether because of this or
any other courses or factors, please do not hesitate to reach out immediately, at any hour, to any of the
course’s heads to discuss.
</p>
</div>
<div class="non_discremination_policy">
<div class="rectangle"><p class=text_of_headers>NON DISCREMINATION POLICY</p></div>
<p>The course and University policy prohibit discrimination based on race, color, religion, sex, marital or parental
status, national origin or ancestry, age, mental or physical disability, sexual orientation, military status. If you
see either by course instructor or any other person related to course showing any form of discrimination,
please inform the proctors office of the wrongdoing.
</p>
</div>
<div class="course_content">
<div class="rectangle"><p class=text_of_headers>COURSE CONTENT</p></div>
<textarea name="courseContent" class="text-area" cols="30" rows="10" placeholder="Enter Course Content"></textarea>
</div>
<select style="width:200px; margin-top:15px; margin-bottom:15px;" name="cloCount" class="select">
<option disabled selected>No. of CLOs</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select>
<div class="course_learning_outcome_matrix">
<div class="rectangle"><p class=text_of_headers>COURSE LEARNING OUTCOME (CLO) MATRIX</p></div>
<table>
<tr >
<th rowspan="2">CLOs</th>
<th rowspan="2">CO Description</th>
<th colspan="4">Blooms Taxonomy</th>
<th rowspan="2">PLO Assessed</th>
<th rowspan="2">CLO – PLO Correlation **</th>
</tr>
<tr >
<th>C</th>
<th>P</th>
<th>A</th>
<th>S</th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum1"></th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo1"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c1"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p1"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a1"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s1"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo1"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation1"></th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum2"></th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo2"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c2"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p2"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a2"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s2"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo2"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation2"></th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum3"></th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo3"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c3"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p3"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a3"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s3"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo3"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation3"></th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum4"> </th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo4"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c4"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p4"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a4"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s4"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo4"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation4"></th>
</tr>
<tr >
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum5"> </th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo5"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c5"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p5"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a5"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s5"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo5"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation5"></th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum6"> </th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo6"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c6"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p6"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a6"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s6"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo6"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation6"></th>
</tr>
<tr >
<th><input type="text" class="course-title" placeholder="Enter Description" name="cloNum7"></th>
<th><input type="text" class="course-title" placeholder="Enter Description" name="clo7"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="c7"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="p7"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="a7"></th>
<th><input type="text" class="course-title" placeholder="Enter" name="s7"></th>
<th><input type="text" class="course-title" placeholder="Enter PLO" name="plo7"></th>
<th><input type="text" class="course-title" placeholder="Enter Correlation" name="correlation7"></th>
</tr>
<th colspan="8">*Bloom's Learning Level: Numbers signifies the Level of Bloom's skills.<br> **CLO – PLO Correlation: 3 – high, 2 – medium, 1- low</th>
</tr>
</table>
</div>
<select style="width:200px; margin-top:15px; margin-bottom:15px;" name="topicNum" class="select">
<option disabled selected>No. of Topic</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
<div class="lesson_planning_with_mapping_of_CLO">
<div class="rectangle"><p class=text_of_headers>LESSON PLANNING WITH MAPPING OF CLO,TEACHING AND ASSESSMENT STRATEGIES</p></div>
<table>
<tr>
<th>Week</th>
<th>Topic</th>
<th>Teaching-Learning Strategy</th>
<th>Assessment Stetragy</th>
<th>Corresponding CLOs</th>
</tr>
<tr>
<td>1</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo1"></td>
</tr>
<tr>
<td>2</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo2"></td>
</tr>
<tr>
<td>3</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo3"></td>
</tr>
<tr>
<td>4</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo4"></td>
</tr>
<tr>
<td>5</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo5"></td>
</tr>
<tr>
<td>6</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic6"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy6"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy6"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo6"></td>
</tr>
<tr>
<td>7</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic7"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy7"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy7"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo7"></td>
</tr>
<tr>
<td>8</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic8"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy8"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy8"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo8"></td>
</tr>
<tr>
<td>9</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic9"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy9"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy9"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo9"></td>
</tr>
<tr>
<td>10</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic10"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy10"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy10"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo10"></td>
</tr>
<tr>
<td>11</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic11"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy11"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy11"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo11"></td>
</tr>
<tr>
<td>12</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic12"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy12"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy12"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo12"></td>
</tr>
<tr>
<td>13</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic13"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy13"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy13"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo13"></td>
</tr>
<tr>
<td>14</td>
<td><input type="text" class="course-title" placeholder="Enter" name="topic14"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="learningStrategy14"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentStrategy14"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="correspondingclo14"></td>
</tr>
</table>
</div>
<select style="width:220px; margin-top:15px; margin-bottom:15px;" name="assessmentCount" class="select">
<option disabled selected>No. of Assessments</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
</select>
<div class="assessment_and_evaluation">
<div class="rectangle"><p class=text_of_headers>ASSESSMENT AND EVALUATION</p></div>
<table>
<tr>
<th>Assessment Type</th>
<th>Assessment Tools</th>
<th>Marks Distribution</th>
<th>Blooms Category</th>
<th>Sub Total</th>
</tr>
<tr>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter Assessment Type" name="assessmentType1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution1"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory1"></td>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter" name="subTotal1"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory2"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory3"></td>
</tr>
<tr>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter Assessment Type" name="assessmentType2"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory4"></td>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter" name="subTotal2"></td></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory5"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool6"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution6"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory6"></td>
</tr>
<tr>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter Assessment Type" name="assessmentType3"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool7"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution7"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory7"></td>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter" name="subTotal3"></td></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool8"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution8"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory8"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool9"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution9"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory9"></td>
</tr>
<tr>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter Assessment Type" name="assessmentType4"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool10"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution10"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory10"></td>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter" name="subTotal4"></td></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool11"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution11"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory11"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool12"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution12"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory12"></td>
</tr>
<tr>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter Assessment Type" name="assessmentType5"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool13"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution13"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory13"></td>
<td rowspan="3"><input type="text" class="course-title" placeholder="Enter" name="subTotal5"></td></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool14"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution14"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory14"></td>
</tr>
<tr>
<td><input type="text" class="course-title" placeholder="Enter" name="assessmentTool15"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="markDistribution15"></td>
<td><input type="text" class="course-title" placeholder="Enter" name="bloomsCategory15"></td>
</tr>
<tr>
<td td colspan="4" style="text-align:right;font-weight:bolder;"></td>
<td style="font-weight:bolder;text-align:center;">Total : 100%</td>
</tr>
</table>
</div>
<p style="text-align:center; font-weight:bold;">The following chart will be followed for grading. Please note that for each category.<br>
* Numbers are inclusive<br></p>
<div style="margin-bottom:15px;" class="grades">
<table>
<tr>
<th>A</th>
<th>A-</th>
<th>B+</th>
<th>B</th>
<th>B-</th>
<th>C+</th>
<th>C</th>
<th>C-</th>
<th>D+</th>
<th>D</th>
<th>F</th>
</tr>
<tr>
<td>90-100</td>
<td>85-89</td>
<td>80-84</td>
<td>75-79</td>
<td>70-74</td>
<td>65-69</td>
<td>60-64</td>
<td>55-59</td>
<td>50-54</td>
<td>45-49</td>
<td>0-44</td>
</tr>
</table>
</div>
<div class="referance_book">
<div class="rectangle"><p class=text_of_headers>REFERENCE BOOK AND ADDITIONAL MATERIALS</p></div>
<textarea name="refMaterials" class="text-area" cols="30" rows="10" placeholder="Enter Reference Materials"></textarea>
</div>
<input style="margin-bottom:20px;" type="submit" value="Submit" name="submit" class="submitButton">
</form>
</body>
</html>