<!DOCTYPE html>
<html>
<head>
<title>Justplay Login Redirect</title>
<style>
    body {
        margin: 30px;
        font-family: Tahoma, Verdana, Arial, sans-serif;
        text-align: center;
    }
	img.logo {
		width:200px;
		margin:50px 0 0 0;
	}
    h4 {
        color: #3599cc;
        font-weight: bold;
        font-size: 32px;
		margin-bottom:15px;
    }
	p {margin-bottom:50px;}
    a {
        text-align:center;
		padding: 10px 15px 10px 15px;
        color: #fff;
        text-decoration: none;
        text-transform: capitalize;
        background-color: #3599cc;
        border-radius: 3px;
        margin: 10px;
		display:inline;
    }
	a:hover {background-color:#123445;}
</style>
<script>
setTimeout(() => {
	var lastPart = window.location.href.split("/").slice(-1)[0];
	lastPart = lastPart === "app" ? "app" : "admin";
	console.log(document.getElementsByTagName("a"));
	Array.prototype.slice.call(document.getElementsByTagName("a")).forEach(a => a.href = a.href.replace("/admin/",`/${lastPart}/`));
}, 10)
</script>
</head>
<body>
        <img class="logo" src="/logo.png">
        <br />
        <h4>WELCOME TO JUSTPLAY.</h4>
        <p>It looks like this page no longer exists. If you are trying to login to your Just Play account, <strong>click your sport</strong> below for access.</p>
        <div align="center">
            <a href="https://football.justplayss.com/admin/">Football</a>
            <a href="https://mbball.justplayss.com/admin/">Men's Basketball</a>
            <a href="https://wbball.justplayss.com/admin/">Women's Basketball</a>
            <a href="https://mlax.justplayss.com/admin/">Men's Lacrosse</a>
            <a href="https://wlax.justplayss.com/admin/">Women's Lacrosse</a>
        </div>
</body>
</html>

