You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Lupus Lite</title>
|
||
|
|
||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
2 years ago
|
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Lato:ital,wght@0,300;0,400;0,900;1,300;1,400;1,900&display=swap" rel="stylesheet">
|
||
2 years ago
|
|
||
|
<link rel="stylesheet" href="/src/main.scss">
|
||
|
</head>
|
||
|
<body>
|
||
2 years ago
|
<main>
|
||
2 years ago
|
<header>
|
||
|
<h1><a href="/">Lupus Lite</a></h1>
|
||
|
<div id="show-user" class="center hidden">(Accesso eseguito come <b id="show-username"></b>)</div>
|
||
|
</header>
|
||
2 years ago
|
<hr>
|
||
2 years ago
|
<p>
|
||
|
Ottieni un link di accesso ad un partita oppure accedi e creane una nuova.
|
||
|
</p>
|
||
2 years ago
|
<hr>
|
||
2 years ago
|
<div class="column">
|
||
2 years ago
|
<a class="button if-not-logged" href="/login">Accedi</a>
|
||
|
<a class="button if-not-logged" href="/register">Registrati</a>
|
||
|
<a class="button if-logged" href="/crea-partita">Crea Partita</a>
|
||
|
<button id="btn-logout" class="button if-logged">Logout</button>
|
||
2 years ago
|
</div>
|
||
2 years ago
|
</main>
|
||
2 years ago
|
<script type="module" src="/src/home/index.js"></script>
|
||
2 years ago
|
</body>
|
||
|
</html>
|