blob: 6ff53cd7c00e361482eb3040e99c30eba9196814 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
let 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">Starta spelet</button>
</div>
`;
document.body.innerHTML = html;
function login() {
}
|