15 lines
515 B
HTML
15 lines
515 B
HTML
|
|
{% extends 'base.html' %}
|
|
{% block title %}Skift kode{% endblock %}
|
|
{% block content %}
|
|
<div class="card narrow">
|
|
<h1>Skift din kode</h1>
|
|
<p class="muted">Du skal ændre din midlertidige kode, før du kan fortsætte.</p>
|
|
<form method="post" class="form-grid">
|
|
<label>Nyt kodeord<input type="password" name="password" required></label>
|
|
<label>Gentag kodeord<input type="password" name="password_confirm" required></label>
|
|
<button type="submit">Gem ny kode</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|