mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
15 lines
340 B
HTML
15 lines
340 B
HTML
|
<!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>
|