25 lines
448 B
HTML
25 lines
448 B
HTML
{{ define "login" }}
|
|
<form method="POST">
|
|
<label for="email">Email</label>
|
|
<input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
placeholder="user@example.com"
|
|
aria-label="Email"
|
|
autocomplete="email"
|
|
required
|
|
>
|
|
<label for="password">Password</label>
|
|
<input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
aria-label="Password"
|
|
required
|
|
>
|
|
<button type="submit">
|
|
Go
|
|
</button>
|
|
</form>
|
|
{{ end }}
|