-
Notifications
You must be signed in to change notification settings - Fork 0
/
callback.html
31 lines (30 loc) · 1.06 KB
/
callback.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
<!DOCTYPE html>
<html>
<head>
<title>Bluesky Auth Callback</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* Critical theme styles to prevent flash */
body { visibility: hidden; }
.js-loaded { visibility: visible; }
</style>
<link rel="preload" href="./css/base.css" as="style">
<link rel="preload" href="./css/callback.css" as="style">
<script src="./js/themeInit.js"></script>
<link rel="stylesheet" href="./css/base.css">
<link rel="stylesheet" href="./css/callback.css">
</head>
<body>
<div class="callback-container">
<h2>Authentication Successful</h2>
<p class="status-text">✨ Rendering keywords<span class="loading-dots"></span></p>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
<p id="error" class="error-message"></p>
<a href="/" class="home-link">Return to app</a>
</div>
<script src="./js/bundle.js"></script>
<script src="./js/callback.js"></script>
</body>
</html>