2023-06-01 13:20:03 -03:00
|
|
|
{{define "title"}}SDVX Replay{{end}}
|
|
|
|
{{define "content"}}
|
2023-06-14 16:25:37 -03:00
|
|
|
<script>
|
|
|
|
// dzieki stackoverflow lmao
|
|
|
|
cookie = key => ((new RegExp((key || '=') + '=(.*?); ', 'gm')).exec(document.cookie + '; ') || ['', null])[1]
|
|
|
|
|
|
|
|
if (cookie("sdvxreplay_session")) {
|
|
|
|
document.location = "/panel"
|
|
|
|
}
|
|
|
|
</script>
|
2023-06-01 13:20:03 -03:00
|
|
|
<h1>SDVX Replay Server</h1>
|
|
|
|
<h2>Wpisz swój nick aby kontynuować</h2>
|
2023-06-14 08:56:31 -03:00
|
|
|
<form action="/auth" method="POST">
|
2023-06-01 13:20:03 -03:00
|
|
|
<input type="text" name="username" placeholder="Nick">
|
|
|
|
<input type="submit" value="Kontynuuj">
|
|
|
|
</form>
|
|
|
|
{{end}}
|