Files
BetiX/resources/views/emails/verify-email.blade.php
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

31 lines
1.0 KiB
PHP

@extends('emails.layout')
@section('content')
<div class="title">Verify Your Email</div>
<div class="text">
Hello {{ $user->name }},<br><br>
Welcome to Betix! Please click the button below to verify your email address and activate your account.
</div>
<div style="text-align: center; margin-bottom: 20px;">
<a href="{{ $url }}" class="btn">Verify Email</a>
</div>
<div class="text" style="font-size: 12px; color: #999; word-break: break-all;">
Or copy & paste this link into your browser:<br>
<span style="color:#666;">{{ $url }}</span>
</div>
@isset($code)
<div class="text" style="margin-top: 20px;">
Alternatively, you can verify by entering this code in the app:<br>
<div style="font-size: 22px; font-weight: bold; letter-spacing: 4px; margin-top: 8px;">{{ $code }}</div>
</div>
@endisset
<div class="text" style="margin-top: 30px;">
If you did not create an account, no further action is required.
</div>
@endsection