Files
coolify/resources/views/auth/verify-email.blade.php
Andras Bacsai 8e57a9ab6b feat(ui): align auth pages to shared shell and truncate team names
Move email verification and team invitation into x-auth.shell with
shared guidance/alert patterns. Truncate long team names in the mobile
header switcher so actions stay visible. Cover both with markup tests.
2026-08-05 21:35:13 +02:00

20 lines
779 B
PHP
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.
<x-layout-simple>
<x-auth.shell title="Coolify" description="Verify your email address to activate your account.">
<div class="flex flex-col gap-4">
<div class="auth-guidance">
<x-reicon name="mail" class="mt-0.5 size-4 shrink-0" />
<p>We sent a verification link to your email address. Open it to continue to Coolify.</p>
</div>
<livewire:verify-email />
</div>
<x-slot:footer>
<span class="text-center">
<span class="block sm:inline">Didnt receive the email?</span>
<span class="block sm:ml-1 sm:inline">Check your spam folder or resend it.</span>
</span>
</x-slot:footer>
</x-auth.shell>
</x-layout-simple>