25 lines
915 B
PHP
25 lines
915 B
PHP
<h1 style="margin: 0 0 20px; color: {{ $brand->primary_color }};">
|
|
{{ $title }}
|
|
</h1>
|
|
|
|
<p>Hola {{ $attempt->user->nombre_apellido }}, {{ $description }}</p>
|
|
|
|
<p>Ingresá este código en {{ $brand->nombre }}:</p>
|
|
|
|
<div style="margin: 28px 0; padding: 20px; border: 2px solid {{ $brand->primary_color }}; border-radius: 8px; text-align: center;">
|
|
<span style="color: {{ $brand->primary_color }}; font-size: 36px; font-weight: 700; letter-spacing: 12px;">
|
|
{{ $attempt->codigo }}
|
|
</span>
|
|
</div>
|
|
|
|
@if($recoveryUrl)
|
|
<div style="text-align: center; margin-bottom: 28px;">
|
|
<a href="{{ $recoveryUrl }}"
|
|
style="display: inline-block; padding: 12px 24px; background-color: {{ $brand->primary_color }}; color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: bold;">
|
|
{{ $buttonLabel }}
|
|
</a>
|
|
</div>
|
|
@endif
|
|
|
|
<p style="color: #64748b; font-size: 14px;">{{ $footer }}</p>
|