-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbookdl.html
102 lines (77 loc) · 2.88 KB
/
bookdl.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
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<meta name="robots" content="none">
<title>PSS Textbook Download</title>
<link rel="icon" href="favicon.svg" sizes="any" type="image/svg+xml">
<link rel="preload" as="fetch" href="data/2024_EN.json">
<link rel="stylesheet" href="css/student-download.css">
<script src="js/student-download.js" defer></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=fallback"/>
</head>
<body>
<noscript>
Your browser is not running Javascript. Are you OK if the webpage looks like a 90’s throwback?
</noscript>
<div id="languageHeader" class="languageHeader"></div>
<div id="divMain" class="container center">
<div id="beforeStartDate">
<p id="beforeStartDateMessage"></p>
<button id="beforeStartDateButton" type="button">OK</button>
</div>
<div id="welcome">
<h1 id="pageTitle">PSS Textbook Download</h1>
<p id="welcomeMessage">Hi! If you see this message, then the form data did not load properly. Please contact Maj to report the issue.</p>
<button id="welcomeButtonNo" type="button" class="transparent">No</button>
<button id="welcomeButtonYes" type="button">Yes</button>
</div>
<div id="notWelcome">
<p id="notWelcomeMessage"></p>
<button id="notWelcomeButtonOK" type="button">OK</button>
</div>
<form id="formMain" action="/403.html" method="post" autocomplete="off"></form>
<div id="authFailed">
<p id="authFailedMsgError"></p>
<div class="overflow-x-auto">
<table>
<tbody>
<tr>
<td id="authFailedNameLabel">Name</td>
<td id="authFailedName" class="strong"></td>
<td id="authFailedNameIcon"></td>
</tr>
<tr>
<td id="authFailedCodeLabel">Code</td>
<td id="authFailedCode" class="strong"></td>
<td id="authFailedCodeIcon"></td>
</tr>
</tbody>
</table>
</div>
<p id="authFailedMsgRepeat">Authentication failed</p>
<button id="authFailedButtonOK" type="button">OK</button>
</div>
<div id="authOK">
<p id="authOKMessage">Hi</p>
<div>
<select id="authOKSelectionLanguage">
<option id="authOKPlaceholderLanguage" class="placeholder" value="" disabled selected></option>
</select>
</div>
<div>
<select id="authOKSelectionFormat" disabled>
<option id="authOKPlaceholderFormat" class="placeholder" value="" disabled selected></option>
</select>
</div>
<button id="authOKButtonDownload" type="button" disabled>Download</button>
<p id="downloadTimer"></p>
</div>
<div class="spacer"></div>
</div>
</body>
</html>