mirror of
https://github.com/1f349/lavender.git
synced 2024-11-09 22:32:48 +00:00
22 lines
468 B
HTML
22 lines
468 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{.ServiceName}}</title>
|
|
</head>
|
|
<script>
|
|
let loginData = {target:{{.TargetOrigin}}, message:{{.LoginData}}};
|
|
document.addEventListener("load", function () {
|
|
postMessage(loginData.message, loginData.target);
|
|
setTimeout(function () {
|
|
window.close();
|
|
}, 2000);
|
|
});
|
|
</script>
|
|
<body>
|
|
<header>
|
|
<h1>{{.ServiceName}}</h1>
|
|
</header>
|
|
<main>Loading...</main>
|
|
</body>
|
|
</html>
|