blob: 658110d3025954ad37da2a859c64df36e5353fdc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import StartGame from "./startGame.js";
import Helpers from "../../helpers/helpers.js";
class Login {
static html = /* html */ `
<div class="container text-center fs-1" style="margin-top: 45vh;">
<label for="username">Vad heter du?</label>
<input type="text" name="username" required>
<button type="button" class="btn btn-light btn-lg" onclick="Login.login">Starta spelet</button>
</div>
`;
static clicked = false;
static async start() {
let res = await (await fetch("/fia/startPoint")).json();
if (res.status === true) {
new StartGame({ data: res.data.data, uid: res.uid });
} else {
document.body.innerHTML = Login.html;
document.getElementsByTagName("button")[0].onclick = () => Login.login();
}
}
static async login(username = "") {
if (Login.clicked === true)
return;
if (username === "")
username = document.getElementsByTagName("input")[0].value;
if (username.length > 15) {
alert("Ditt namn är för långt!");
return;
}
Login.clicked = true;
let res = await Helpers.mFetch("/fia/login", { name: username });
new StartGame(res);
}
}
Login.start();
|