25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Discord Redirect</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
padding: 20px;
|
|
}
|
|
.form-label i {
|
|
color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
(function() {
|
|
// const bc = new BroadcastChannel("cebg")
|
|
// bc.postMessage("twitter login finished")
|
|
window.close();
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|