Files
VacatureRadar/templates/registration/password_reset_done.html
T
2026-07-26 05:03:53 +02:00

32 lines
1.4 KiB
HTML

{% load static %}<!doctype html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light">
<title>Herstel-link verstuurd · VacatureRadar</title>
<link rel="icon" href="{% static 'favicon.svg' %}?v={{ app_version }}" type="image/svg+xml" sizes="any">
<link rel="stylesheet" href="{% static 'css/auth.css' %}?v={{ app_version }}">
</head>
<body class="auth-page">
{% include "components/icon_sprite.html" %}
<main class="auth-shell">
<div class="auth-brand">
<img class="auth-brand-logo" src="{% static 'img/vacatureradar-logo.svg' %}" alt="VacatureRadar" width="72" height="72">
<p class="auth-brand-name">VacatureRadar</p>
<p class="auth-brand-tagline">Persoonlijke intelligence cockpit</p>
</div>
<div class="auth-card">
<h1>Controleer je e-mail</h1>
<div class="auth-alert is-info" role="status">
<svg class="icon" aria-hidden="true"><use href="#icon-mail"></use></svg>
<span>Bestaat er een account met dit e-mailadres, dan is er een herstel-link verstuurd. Volg de instructies in de mail om een nieuw wachtwoord in te stellen.</span>
</div>
<a class="auth-back" href="{% url 'login' %}"><svg class="icon" aria-hidden="true"><use href="#icon-arrow"></use></svg>Terug naar inloggen</a>
</div>
{% include "components/developer_credit.html" %}
</main>
</body>
</html>