socurity/test/index.html

29 lines
470 B
HTML
Raw Permalink Normal View History

2020-02-27 16:10:33 -05:00
<html>
<head>
<style>
html, body {
background: #222;
color: white;
}
</style>
</head>
<body>
<script>
window.addEventListener('message', (event) => {
if (event.source != window) return;
if (!event.data.source) return;
if (event.data.source !== 'socurity') return;
if (event.data.event !== 'loaded') return;
console.log(`socurity ${event.data.version} Loaded!`);
createAccount();
})
function createAccount() {
}
</script>
</body>
</html>