Skip to content

Commit

Permalink
feat: add full html page for proctorio launch
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharis278 committed Dec 18, 2023
1 parent 1f95b84 commit f4d4013
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion edx_exams/templates/proctorio_download.html
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
loading Proctorio extension...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}

.container {
text-align: center;
max-width: 600px;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<h1>Launching Proctorio application...</h1>
<p>If your exam does not start in the next 5 seconds visit <a href="https://getproctorio.com" target="_blank">getproctorio.com</a> to download the latest browser extension.</p>
</div>
</body>
</html>

0 comments on commit f4d4013

Please sign in to comment.