fluffychat/web/auth.html

13 lines
411 B
HTML
Raw Permalink Normal View History

2022-02-13 17:29:04 +00:00
<!DOCTYPE html>
2023-12-08 08:09:00 +00:00
<title>Authentication complete</title>
<p>Authentication is complete. If this does not happen automatically, please close the window.</p>
<script>
if (window.opener) {
2022-02-13 17:29:04 +00:00
window.opener.postMessage({
2023-03-12 04:33:47 +00:00
'flutter-web-auth-2': window.location.href
2022-02-13 17:29:04 +00:00
}, window.location.origin);
2023-12-08 08:09:00 +00:00
} else {
localStorage.setItem('flutter-web-auth-2', window.location.href);
}
window.close();
</script>