Skip to content

Commit 16ced86

Browse files
committed
adding oauth.html
1 parent 11f6ced commit 16ced86

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

public/oauth.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Redirecting...</title>
6+
7+
</head>
8+
<body>
9+
<script type="text/javascript">
10+
window.onload = (event) => {
11+
window.opener.postMessage("Authenticated!", "*");
12+
window.close();
13+
}
14+
</script>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)