{% extends "base_auth.html" %}
{% block title %}Confirmation successful{% endblock %}
{% block other_action %}{% endblock %}
{% block auth_content %}
<div class="bg-white rounded-lg shadow-sm p-6">
<h1 class="text-2xl font-bold mb-6">Success</h1>
<p class="text-sm text-muted-foreground mb-6">Confirmation complete. You are now logged in.</p>
<a id="continue-link" href="/{{ entity }}"
class="uk-btn uk-btn-primary w-full">
Continue
</a>
</div>
<div id="default-redirect" data-url="/{{ entity }}" hidden></div>
<script>
(function() {
var next = localStorage.getItem('ayb_login_next');
if (next) {
localStorage.removeItem('ayb_login_next');
window.location.href = next;
} else {
window.location.href = document.getElementById('default-redirect').getAttribute('data-url');
}
})();
</script>
{% endblock %}