mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-11 13:05:31 +00:00
- Add UI modal to prompt for API token when required - Detect and handle invalid/expired tokens automatically - Clear invalid tokens and re-prompt user - Add ability to clear stored tokens from browser - Fix race condition in modal retry logic - Improve error messages for auth failures - Handle both export and import authentication consistently - Track operation source to ensure correct retry behavior Fixes issue reported by da99Beast where Docker users with API_TOKEN environment variable couldn't authenticate for export/import operations
16 lines
No EOL
475 B
HTML
16 lines
No EOL
475 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
|
|
<title>Pulse</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="root"></div>
|
|
|
|
<script src="/src/index.tsx" type="module"></script>
|
|
</body>
|
|
</html> |