forked from an-cs-chan/Campus-Chemistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
99 lines (99 loc) · 3.69 KB
/
quiz.html
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
<head>
<title>Campus Chemistry</title>
<link rel="stylesheet" type="text/css" href="styles/Styles.css" />
<script type="text/javascript" language="JavaScript" src="scripts/jquery-1.7.1.min.js"></script>
<script type='text/javascript' src='scripts/topBar.js'></script>
<script type='text/javascript' src='scripts/quiz.js'></script>
</head>
<body>
<div style="float:left">
<span style="font-size: 34px; color: rgb(127,129, 171)">
Campus Chemistry
<img style="width: 35px; height: 50px" alt="logo" src="images/Logo.png">
</span>
</div>
<div style="float:right; position:relative;">
<form id="logoutForm">
<span id="userGreeting">Welcome Back
<span id="useridGreeting">Guest</span>!
<input id="logoutButton" class="button" value="Log Out" type="submit" />
</span>
</form>
</div>
<br/>
<br/>
<br/>
<div id="topBar">
<div class="tabs">
<ul>
<a href="blinddate.html"><li>Blind Date</li></a>
<a href="quiz.html"><li class="selected">Quiz</li></a>
<a href="search.html"><li>Search</li></a>
<a href="profile.html"><li>Profile</li></a>
<a href="inbox.html"><li>Inbox</li></a>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="mainContent">
<div class="contentHeader">Compatability Test</div>
<div id="quizPanelMain">
<div id="quizPanelLeft" style="display:none">
<div id="progressBox" class="secondaryContent">
<div class="contentHeader">Progress</div>
<div id="quizSubjects"></div>
</div>
</div>
<div id="quizPanelRight" style="display:none">
<div class="secondaryContent">
<div id="progressBar">
<div> </div>
</div>
</div>
<div id="questionBox" class="secondaryContent">
<div class="contentHeader">
Question <span class="questionNumber"></span>
<span id="progressPercentLabel">Progress: <span class="progressPercent"></span>%</span>
</div>
<div id="questionContent">
<div id="questionText"></div>
<div id="questionAnswers">
<div class="questionAnswer">
<input id="answer0" type="radio" name="questionAnswer" value="0" /><label for="answer0"></label>
</div>
<div class="questionAnswer">
<input id="answer1" type="radio" name="questionAnswer" value="1" /><label for="answer1"></label>
</div>
<div class="questionAnswer">
<input id="answer2" type="radio" name="questionAnswer" value="2" /><label for="answer2"></label>
</div>
<div class="questionAnswer">
<input id="answer3" type="radio" name="questionAnswer" value="3" /><label for="answer3"></label>
</div>
</div>
<div id="questionFooter">
<div id="prevQuestionButton" class="button disabled">Prev</div>
<div id="nextQuestionButton" class="button disabled">Next</div>
<div>Question <span class="questionNumber"></span> of <span class="questionTotal"></span></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<div id="quizPanelOverlay" class="secondaryContent">
<div id="quizAboutText" style="display:none">
The compatibility quiz consists of 50 questions that help determine your compatibility with other members of Campus Chemistry.
</div>
<div class="overlayContent" style="display:none">
<img src="images/Logo.png" />
<p>Click anywhere to begin.</p>
</div>
<div class="loader" style="display:none">
<img src="images/loader.gif" />
<p>Loading test...</p>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</body>