28 lines
731 B
HTML
28 lines
731 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{> 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>
|
|
<form action="/" method="post">
|
|
<button type="submit" class="button">Return to freelancer selection</button>
|
|
</form>
|
|
<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>
|
|
|
|
|
|
|
|
|