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.
44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
HTML
<!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>
|
|
<link href="https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="/src/main.scss">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Lupus Lite</h1>
|
|
<form action="/api/login" method="post">
|
|
<h2 class="fill-row">Accedi</h2>
|
|
<p class="fill-row">
|
|
Inserisci le tue credenziali per accedere alla pagina utente
|
|
</p>
|
|
<label for="login-username">Username</label>
|
|
<input type="text" name="username" id="login-username">
|
|
<label for="login-password">Password</label>
|
|
<input type="password" name="password" id="login-password">
|
|
<button class="fill-row" type="submit">Accedi</button>
|
|
</form>
|
|
<form action="/api/register" method="post">
|
|
<h2 class="fill-row">Registrati</h2>
|
|
<p class="fill-row">
|
|
Crea un account per accedere alla pagina utente
|
|
</p>
|
|
<label for="register-username">Username</label>
|
|
<input type="text" name="username" id="register-username">
|
|
<label for="register-password">Password</label>
|
|
<input type="password" name="password" id="register-password">
|
|
<label for="register-password">Ripeti Password</label>
|
|
<input type="password" name="password2" id="register-password2">
|
|
<button class="fill-row" type="submit">Registrati</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html> |