-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHS Interactive Map</title>
<link rel="stylesheet" href="/js_css/auth/styles2.css"> <!-- Link to your CSS file -->
<style>
/* Additional inline styles can be added here if needed */
</style>
<script src='/js_css/index/index.js'></script>
</head>
<body>
<div style='text-align:center'>
<h2>Launching application...</h2>
</div>
<div id='version_select' class='login-container' hidden>
<h2 style='font-family: "Arial";'>A new version of this web app has been created. Would you like to use the new version or the old one?</h2>
<button id='vers1' onclick='setCookie("version_preference", "1", 400); window.location.reload()'>Legacy (older) version</button>
<br>
<br>
<br>
<button id='vers1' onclick='setCookie("version_preference", "2", 400); window.location.reload()'>Current version</button>
<br>
<br>
<p>You can change this preference at any time after logging in.</p>
</div>
</body>
</html>