14 lines
434 B
HTML
14 lines
434 B
HTML
|
|
{% extends 'base.html' %}
|
|
{% block title %}Reset kodeord{% endblock %}
|
|
{% block content %}
|
|
<div class="card narrow">
|
|
<h1>Nulstil kodeord</h1>
|
|
<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 kodeord</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|