-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.php
79 lines (79 loc) · 4.24 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<?php $title = 'Quiz'; include './header.inc' ?>
<body class="quiz-body">
<?php $select = 3; include './menu.inc' ?>
<div class="quiz-main-headding">
<p>Quiz</p>
<h1 class="quiz-title">Test your Apache knowledge</h1>
<p>Can you complete these five questions?</p>
</div>
<div class="quiz-content">
<form method="post" action="#results"> <!-- Disabled Validation -->
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Details</legend>
<div class="quiz-details-flex">
<label class="quiz-details-input"><p>Apache ID</p><input type="text" name="ID" value="1234567" /></label>
<label class="quiz-details-input"><p>Given Name</p><input type="text" name="given_name" value="" /></label>
<label class="quiz-details-input"><p>Family Name</p><input type="text" name="family_name" value="Test" /></label>
</div>
</fieldset>
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Q1) Which is a competitor to Apache?</legend>
<label><input type="radio" name="quiz-question-1" value="NGINX" checked />NGINX </label>
<label><input type="radio" name="quiz-question-1" value="Microsoft_Edge" />Microsoft Edge</label>
<label><input type="radio" name="quiz-question-1" value="MicroLP" />MicroLP</label>
<label><input type="radio" name="quiz-question-1" value="BL2" />BL2</label>
</fieldset>
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Q2) Which operating systems does Apache run on?</legend>
<label><input type="checkbox" name="quiz-question-2[]" value="Windows" checked />Windows</label>
<label><input type="checkbox" name="quiz-question-2[]" value="Windows_95" />Windows 95</label>
<label><input type="checkbox" name="quiz-question-2[]" value="Linux" checked />Linux</label>
<label><input type="checkbox" name="quiz-question-2[]" value="MacOS" checked />MacOS</label>
</fieldset>
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Q3) Which variety of features dose Apache support?</legend>
<label><input type="checkbox" name="quiz-question-3[]" value="Ipv6" checked />Ipv6</label>
<label><input type="checkbox" name="quiz-question-3[]" value="SSL_Secure_Server" checked />SSL Secure Server</label>
<label><input type="checkbox" name="quiz-question-3[]" value="Ipv23G" />Ipv23G</label>
<label><input type="checkbox" name="quiz-question-3[]" value="Root_SSH_Access" checked />Root SSH Access</label>
<label><input type="checkbox" name="quiz-question-3[]" value="YARN" />YARN</label>
<label><input type="checkbox" name="quiz-question-3[]" value="Ada" />Ada</label>
</fieldset>
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Q4) What year was Apache's first version released?</legend>
<label>
Select Here
<select name="quiz-question-4">
<option value="">Please Select</option>
<option value="1995" selected>1995</option>
<option value="1994">1994</option>
<option value="1992">1992</option>
<option value="2001">2001</option>
</select>
</label>
</fieldset>
<fieldset class="quiz-fieldset">
<legend class="quiz-question">Q5) In which year was the Apache HTTP Server became the most used web server?</legend>
<label>
Select here
<select name="quiz-question-5">
<option value="">Please Select </option>
<option value="1994">1994</option>
<option value="1995">1995</option>
<option value="1996" selected >1996</option>
<option value="1997">1997</option>
</select>
</label>
</fieldset>
<div class="quiz-button-container">
<input class="quiz-button" type="submit" value="Submit" />
<input class="quiz-button" type="reset" value="Reset" />
</div>
</form>
</div>
<?php require_once './markquiz.php' ?>
<?php include './footer.inc'; ?>
</body>
</html>