-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathassessment.php
More file actions
26 lines (22 loc) · 1.26 KB
/
assessment.php
File metadata and controls
26 lines (22 loc) · 1.26 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
<?php require_once('includes/header-no-menu.php'); ?>
<div class="">
<div id="testAreaContent" class="col-12 col-md-8 mx-auto my-3">
<p class="my-3 text-center" id="testQuestion">1. I have a question, are your shoes tied?</p>
<div class="ansContainer my-1">
<input type="radio" name="choice" value="a" /> <span id="optionA">Answer A</span>
</div>
<div class="ansContainer my-1">
<input class="btn-group-vertical" type="radio" name="choice" value="b" /> <span id="optionB">Answer B</span>
</div>
<div class="ansContainer my-1">
<input class="btn-group-vertical" type="radio" name="choice" value="c" /> <span id="optionC">Answer C</span>
</div>
<div class="ansContainer my-1">
<input class="btn-group-vertical" type="radio" name="choice" value="d" /> <span id="optionD">Answer D</span>
</div>
<div class="text-center">
<button type="button" id="nextBTN" class="btn btn-success">Next</button>
</div>
</div>
</div>
<?php require_once('includes/ez-footer.php'); ?>