-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
50 lines (40 loc) · 1.54 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--DO NOT CHANGE THE FOLLOWING LINES !!!-->
<link rel="stylesheet" href="styles.css">
<script src="https://habahram.github.io/ISTA330/practicum/week-10/tests.js" type="text/javascript"></script>
<title>Document</title>
</head>
<body>
<div>
In this practicum you will add a session based authentication to your API and also you will modify your
imagequiz front-end so that only logged in customers will be able to take quizzes.
<ul>
<li>Follow the instructions in the lecture "Session Based Authentication" which is posted on
d2l and add session based authentication to your imagequiz-backend API.
</li>
<li>
Follow the instructions in the lecture "React private routes" which is posted on
d2l and modify your imagequiz front-end so that only authenticated customers have access to quizzes.
</li>
<li>
Deploy your updated back-end API to Heroku.
</li>
<li>
Deploy your updated front-end to Github Pages.
</li>
</ul>
</div>
<div id="test-the-api">
</div>
<div>
<p id="goToWebsite"></p>
</div>
<div class="iframe-container">
<iframe id="myApplicationFrame" src="" allowfullscreen></iframe>
</div>
</body>
</html>