fluffychat/web/auth.html

15 lines
342 B
HTML
Raw Permalink Normal View History

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