x x x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


HTML
<script>
var os_destination = "/"; 
if(getQueryVariableFromUrl("os_destination") !== "notfound"){
	os_destination = getQueryVariableFromUrl("os_destination");
}
if(getQueryVariableFromUrl("admin") === "notfound"){
	if(AJS.params.remoteUser === ""){
		console.log("about to redirect");
		window.location.replace("https://signup.entrepreneurshipworldcup.com/ewc/eventsignup?os_destination=" + os_destination);
	} else {
		window.location.replace(os_destination);
	}
} 
</script>