15 lines
756 B
HTML
15 lines
756 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Aanmelden · VacatureRadar{% endblock %}
|
|
{% block content %}
|
|
<section class="auth-card">
|
|
<div class="auth-brand"><span class="brand-mark">VR</span><div><h1>Welkom terug</h1><p>Open je persoonlijke vacatureselectie.</p></div></div>
|
|
{% if form.errors %}<div class="message error">Gebruikersnaam of wachtwoord klopt niet.</div>{% endif %}
|
|
<form method="post" class="stack">{% csrf_token %}
|
|
<label>Gebruikersnaam {{ form.username }}</label>
|
|
<label>Wachtwoord {{ form.password }}</label>
|
|
<button class="button button-primary button-block" type="submit">Aanmelden</button>
|
|
</form>
|
|
<p class="muted small">De applicatie is ontworpen voor lokaal gebruik via LAN of VPN.</p>
|
|
</section>
|
|
{% endblock %}
|