SYYTe/maku-boot-system/src/main/resources/templates/third_login.ftlh
2024-02-24 12:30:57 +08:00

24 lines
557 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>第三方登录</title>
</head>
<body>
登陆中...
<script>
window.onload = function () {
const data = {
openType: "${openType}",
code: "${code}",
state: "${state}"
}
window.opener.postMessage(data, "*");
window.close();
}
</script>
</body>
</html>