fluffychat/web/auth.html

15 lines
340 B
HTML
Raw Normal View History

2022-02-13 17:29:04 +00: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({
'flutter-web-auth': window.location.href
}, window.location.origin);
window.close();
</script>
</body>