Skip to content

Instantly share code, notes, and snippets.

@dashedstripes
Created February 3, 2022 18:59
Show Gist options
  • Save dashedstripes/47c6343adc971e4fe1938424308f6610 to your computer and use it in GitHub Desktop.
Save dashedstripes/47c6343adc971e4fe1938424308f6610 to your computer and use it in GitHub Desktop.
test
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script src="https://miro.com/app/static/sdk.1.1.js"></script>
<style>
body {
text-align: center;
margin-top: 50px;
}
</style>
<script>
miro.onReady(() => {
function close() {
miro.board.ui.closeModal();
}
setTimeout(close, 10000);
});
</script>
</head>
<body>
<h1>Security Notice</h1>
<p>Please follow the correct guidelines as outlines in our Miro usage policy. Please reach out to your company admin for more information on the security requirements for utilizing Miro.</p>
<button onclick="miro.board.ui.closeModal();">Close</button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment