hate radio buttons

This commit is contained in:
LinlyBoi
2023-12-05 08:39:04 +02:00
parent cca89e3003
commit e41690858d

View File

@@ -43,16 +43,16 @@
<div id="choices" class="card-body"> <div id="choices" class="card-body">
<form action="javascript:;"> <form action="javascript:;">
<div> <div>
<label class="form-label" for="ans1"> Student Name </label> <label class="form-label" id="label1" for="ans1"> Student Name </label>
<input class="form-check-label" type="radio" id="ans1", name="ans"> <input class="form-check-label" type="button" id="ans1">
<label class="form-label" for="ans2"> Student Name </label> <label class="form-label" id="label2" for="ans2"> Student Name </label>
<input class="form-check-label" type="radio" id="ans2", name="ans"> <input class="form-check-label" type="button" id="ans2">
</div> </div>
<div> <div>
<label class="form-label" for="ans3"> Student Name </label> <label class="form-label" id="label3" for="ans3"> Student Name </label>
<input class="form-check-label" type="radio" id="ans3", name="ans"> <input class="form-check-label" type="button" id="ans3">
<label class="form-label" for="ans4"> Student Name </label> <label class="form-label" id="label4" for="ans4"> Student Name </label>
<input class="form-check-label" type="radio" id="ans4", name="ans"> <input class="form-check-label" type="button" id="ans4">
</div> </div>
<button onclick="questionSubmit()" type="submit" class="btn btn-primary">Submit</button> <button onclick="questionSubmit()" type="submit" class="btn btn-primary">Submit</button>
</form> </form>