1
0
mirror of synced 2025-12-19 18:14:59 -05:00

added redirect to account page

This commit is contained in:
Omkar Yadav
2020-02-21 18:51:11 +04:00
parent c835c1fcb3
commit 7fc5b9da3e
2 changed files with 6 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
<meta name="robots" content="noindex, nofollow">
<link rel="shortcut icon" href="welcome-content/favicon.ico" type="image/x-icon">
<meta http-equiv="refresh" content="0; url=realms/master/account" />
<#if properties.styles?has_content>
<#list properties.styles?split(' ') as style>
@@ -20,6 +21,7 @@
<body>
<div class="container-fluid">
<div class="row">
<a href="realms/master/account" id="redirect-button">Click here to open account</a>
</div>
</div>
</body>

View File

@@ -0,0 +1,4 @@
document.addEventListener('load', () => {
const redirectButton = document.getElementById('redirect-button');
redirectButton.click();
});