Files
OSINT/templates/accounts/password_reset_complete.html
Iliyan Angelov ed94dd22dd update
2025-11-26 22:32:20 +02:00

17 lines
624 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% block title %}Възстановяване на Парола Завършено - Официален Портал{% endblock %}
{% block content %}
<div class="auth-container">
<div class="auth-card">
<h2>Възстановяване на Парола Завършено</h2>
<p>Вашата парола е зададена. Можете да влезете в системата сега.</p>
<div class="auth-links">
<a href="{% url 'accounts:login' %}" class="btn btn-primary btn-block">Вход</a>
</div>
</div>
</div>
{% endblock %}