27 lines
682 B
HTML
27 lines
682 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{{> templateIncludes/style.css.html}}
|
|
</head>
|
|
<body>
|
|
<h1>Redirecting:</h1>
|
|
<script type="text/javascript">
|
|
|
|
function formAutoSubmit () {
|
|
var frm = document.getElementById("redirectBtn");
|
|
frm.click();
|
|
}
|
|
|
|
window.onload = formAutoSubmit;
|
|
</script>
|
|
{{> templateIncludes/returnToIndexButton.html.html}}
|
|
<form id="redirectForm" action="{{route}}" method="post">
|
|
<button id="redirectBtn" type="submit" name="{{routeparameter}}" value="{{routevalue}}" class="button">Redirecting to: {{route}}</button>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|