-
Notifications
You must be signed in to change notification settings - Fork 1
/
result.html
40 lines (40 loc) · 1.4 KB
/
result.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exam Results</title>
<link
rel="icon"
href="./assets/favicon_io/favicon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/result.css" />
</head>
<body>
<div class="container">
<div class="result-content">
<img
src="assets/images/png/results-img.png"
class="small-screen-img"
alt="Result Image"
/>
<h2>Exam Result</h2>
<p>Name: <span id="studentName"></span></p>
<p>ID: <span id="studentID"></span></p>
<p>Score: <span id="studentScore"></span></p>
<a
href="index.html"
onclick="localStorage.removeItem('flaggedQuestions'); localStorage.removeItem('selectedAnswers'); localStorage.removeItem('remainingTime'),localStorage.removeItem('studentName'), localStorage.removeItem('studentID'), localStorage.removeItem('studentScore'), localStorage.removeItem('studentImage')"
>
<button class="btn"><i class="fas fa-home"></i> Return Home</button>
</a>
</div>
<div class="img">
<img src="assets/images/png/results-img.png" alt="Result Image" />
</div>
</div>
<script src="js/result.js"></script>
</body>
</html>