Initialer Laravel Commit für BetiX
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

This commit is contained in:
2026-04-04 18:01:50 +02:00
commit 0280278978
374 changed files with 65210 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
@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