13 lines
391 B
HTML
13 lines
391 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block content %}
|
|
<div class="card narrow">
|
|
<h1>Login</h1>
|
|
<form method="post" class="form-grid">
|
|
<label>Brugernavn<input type="text" name="username" required></label>
|
|
<label>Kodeord<input type="password" name="password" required></label>
|
|
<button type="submit">Log ind</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|