12 lines
367 B
HTML
12 lines
367 B
HTML
{{define "content"}}
|
|
<h1>Login</h1>
|
|
<form action="/login" method="post">
|
|
<label>Email</label>
|
|
<input type="email" name="email" value="{{.Email}}" required>
|
|
<label>Password</label>
|
|
<input type="password" name="password" required>
|
|
<button type="submit">Accedi</button>
|
|
</form>
|
|
<p class="muted">Non hai un account? <a href="/signup">Registrati</a></p>
|
|
{{end}}
|