forked from skrunkly-turtles/ScholarSprout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 870 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Launching NewHacks...</title>
<!-- Redirect immediately to the preferences page to prevent directory listing -->
<meta http-equiv="refresh" content="0; url=preferences.html">
<style>
body { font-family: Arial, Helvetica, sans-serif; display:flex; align-items:center; justify-content:center; height:100vh; margin:0; background:#f3f4f6; color:#0f172a }
.card{background:#fff;padding:20px;border-radius:8px;box-shadow:0 6px 24px rgba(2,6,23,0.08); text-align:center}
a{color:#2563eb}
</style>
</head>
<body>
<div class="card">
<h1>Opening app…</h1>
<p>If you are not redirected automatically, <a href="newhacks.html">click here to open the app</a>.</p>
</div>
</body>
</html>