24 lines
855 B
HTML
24 lines
855 B
HTML
|
|
{{define "head"}}
|
||
|
|
<meta name="robots" content="noindex">
|
||
|
|
{{end}}
|
||
|
|
|
||
|
|
{{define "content"}}
|
||
|
|
<article>
|
||
|
|
<h1>Endre passord</h1>
|
||
|
|
<p>Du må velge et nytt passord før du kan fortsette.</p>
|
||
|
|
<form method="POST" action="{{basePath}}/reset-password">
|
||
|
|
<input type="hidden" name="csrf_token" value="{{.CSRFToken}}">
|
||
|
|
<label for="password">
|
||
|
|
Nytt passord
|
||
|
|
<input type="password" id="password" name="password" required autofocus
|
||
|
|
autocomplete="new-password" minlength="8">
|
||
|
|
</label>
|
||
|
|
<label for="password_confirm">
|
||
|
|
Bekreft nytt passord
|
||
|
|
<input type="password" id="password_confirm" name="password_confirm" required
|
||
|
|
autocomplete="new-password">
|
||
|
|
</label>
|
||
|
|
<button type="submit">Lagre nytt passord</button>
|
||
|
|
</form>
|
||
|
|
</article>
|
||
|
|
{{end}}
|