added redirect to account page
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
document.addEventListener('load', () => {
|
||||
const redirectButton = document.getElementById('redirect-button');
|
||||
redirectButton.click();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user