24 lines
811 B
HTML
24 lines
811 B
HTML
|
|
{{define "head"}}
|
||
|
|
<meta name="robots" content="noindex">
|
||
|
|
{{end}}
|
||
|
|
|
||
|
|
{{define "content"}}
|
||
|
|
<article>
|
||
|
|
<h1>Logg inn</h1>
|
||
|
|
<form method="POST" action="{{basePath}}/login">
|
||
|
|
<input type="hidden" name="csrf_token" value="{{.CSRFToken}}">
|
||
|
|
<label for="username">
|
||
|
|
Brukernavn
|
||
|
|
<input type="text" id="username" name="username" required autofocus
|
||
|
|
autocomplete="username" autocapitalize="none">
|
||
|
|
</label>
|
||
|
|
<label for="password">
|
||
|
|
Passord
|
||
|
|
<input type="password" id="password" name="password" required
|
||
|
|
autocomplete="current-password">
|
||
|
|
</label>
|
||
|
|
<button type="submit">Logg inn</button>
|
||
|
|
</form>
|
||
|
|
<p><a href="{{basePath}}/signup">Har du ikke konto? Registrer deg</a></p>
|
||
|
|
</article>
|
||
|
|
{{end}}
|