fluffychat/web/auth.html
2023-12-08 09:09:00 +01:00

13 lines
411 B
HTML

<!DOCTYPE html>
<title>Authentication complete</title>
<p>Authentication is complete. If this does not happen automatically, please close the window.</p>
<script>
if (window.opener) {
window.opener.postMessage({
'flutter-web-auth-2': window.location.href
}, window.location.origin);
} else {
localStorage.setItem('flutter-web-auth-2', window.location.href);
}
window.close();
</script>