copious-transitions
Version:
Framework for working with frameworks
28 lines (25 loc) • 700 B
HTML
<div>
You login was not successful.
<br>
We did not receive authorization from your identity provider.
<br>
You may click anywhere on this page to speed the process along.
</div>
<script lang="javascript">
var to = setTimeout(() => {
RefreshParent()
window.close()
},10000)
document.addEventListener('click',(ev) => {
if ( to ) clearTimeout(to)
RefreshParent()
window.close()
})
function RefreshParent() {
if (window.opener != null && !window.opener.closed) {
//window.opener.location.reload();
window.opener.focus()
}
}
window.onbeforeunload = RefreshParent;
</script>