16 lines
456 B
HTML
16 lines
456 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}LDAP Passwort erfolgreich geändert{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Main Content -->
|
|
<main class="container mx-auto w-full px-4 my-8 flex-grow flex flex-col">
|
|
<h1 class="page-title">LDAP Passwort erfolgreich geändert</h1>
|
|
|
|
<div class="max-w-4xl mx-auto">
|
|
<span class="text-gray-700 dark:text-gray-200">Ihr Passwort wurde geändert.</span>
|
|
</div>
|
|
|
|
</main>
|
|
{% endblock %}
|