36 lines
1.4 KiB
HTML
36 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>Wachtwoord gewijzigd · VacatureRadar</title>
|
|
<link rel="icon" href="{% static 'img/itworx-app-icon.png' %}?v={{ app_version }}" type="image/png" sizes="512x512">
|
|
<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/itworx-wordmark.png' %}" alt="ITWorx.tech" width="274" height="60">
|
|
<p class="auth-brand-name">VacatureRadar</p>
|
|
<p class="auth-brand-tagline">Persoonlijke intelligence cockpit</p>
|
|
</div>
|
|
|
|
<div class="auth-card">
|
|
<h1>Wachtwoord gewijzigd</h1>
|
|
<div class="auth-alert is-success" role="status">
|
|
<svg class="icon" aria-hidden="true"><use href="#icon-check"></use></svg>
|
|
<span>Je wachtwoord is bijgewerkt. Je kunt nu inloggen met je nieuwe wachtwoord.</span>
|
|
</div>
|
|
<form method="get" action="{% url 'login' %}" class="auth-form">
|
|
<button class="btn btn-primary" type="submit">
|
|
Naar inloggen
|
|
<svg class="icon" aria-hidden="true"><use href="#icon-arrow"></use></svg>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|