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.
website/views/login.html

20 lines
484 B
HTML

{{template "base" .}}
{{define "title"}}Poisson - Utenti{{end}}
{{define "body"}}
<h1>Login</h1>
<p>Inserisci le tue credenziali di Poisson per accedere</p>
<form action="/login" method="post">
<label for="login-username">Username:</label>
<input type="text" name="username" id="login-username">
<label for="login-password">Password:</label>
<input type="text" name="password" id="login-password">
<input type="submit" value="Login">
</form>
{{end}}