-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.03 KB
/
index.html
File metadata and controls
24 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KTaNE League - Homepage</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script>
$(window).ready(function() {
var currentuser = "{{discordTag}}";
if(currentuser == "") {
$("footer").html('You are not logged in. <a href="/login/home">Login?</a>');
} else {
$("footer").text('You are logged in as ' + currentuser);
}
});
</script>
</head>
<body>
<h1>KTaNE League Homepage</h1>
<p>This page is only temporary while we work on the site. Email us or leave a message on Discord if you have suggestions.</p>
<p>Please contact us on <a href="mailto:ktaneleague@onpointcoding.net">ktaneleague@onpointcoding.net</a> or <a href="https://discord.gg/r8YPGs4">Discord</a> for more info.</p>
<footer></footer>
</body>
</html>