10 lines
171 B
HTML
10 lines
171 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
window.onload = (event) => {
|
|
window.opener.postMessage('pass', '*');
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|