17 lines
533 B
HTML
17 lines
533 B
HTML
{{define "title"}}SDVX Replay{{end}}
|
|
{{define "content"}}
|
|
<script>
|
|
// dzieki stackoverflow lmao
|
|
cookie = key => ((new RegExp((key || '=') + '=(.*?); ', 'gm')).exec(document.cookie + '; ') || ['', null])[1]
|
|
|
|
if (cookie("sdvxreplay_session")) {
|
|
document.location = "/panel"
|
|
}
|
|
</script>
|
|
<h1>SDVX Replay Server</h1>
|
|
<h2>Wpisz swój nick aby kontynuować</h2>
|
|
<form action="/auth" method="POST">
|
|
<input type="text" name="username" placeholder="Nick">
|
|
<input type="submit" value="Kontynuuj">
|
|
</form>
|
|
{{end}} |