Merge branch 'fix/correcciones_secundarias' into dev

This commit is contained in:
2026-08-05 10:28:59 -03:00
7 changed files with 75 additions and 25 deletions

View File

@@ -2,10 +2,16 @@
Recuperá tu contraseña
</h1>
@if($attempt->reason === 'account_locked')
<p>
Hola {{ $attempt->user->nombre_apellido }}, registramos varios intentos fallidos de inicio de sesión en tu cuenta. Por seguridad, hemos bloqueado el acceso temporalmente. Puedes utilizar este código para cambiar tu contraseña y desbloquearla inmediatamente.
</p>
@else
<p>
Hola {{ $attempt->user->nombre_apellido }}, recibimos una solicitud para restablecer
la contraseña de tu cuenta.
</p>
@endif
<p>Ingresá este código en {{ $tenant->nombre }}:</p>
@@ -15,6 +21,21 @@
</span>
</div>
@php
$recoveryUrl = 'https://' . $tenant->dominio . '/recuperar-contrasena/codigo?email=' . urlencode($attempt->user->email);
@endphp
<div style="text-align: center; margin-bottom: 28px;">
<a href="{{ $recoveryUrl }}"
style="display: inline-block; padding: 12px 24px; background-color: {{ $tenant->primary_color }}; color: #ffffff; text-decoration: none; border-radius: 6px; font-weight: bold;">
Ingresar código ahora
</a>
</div>
<p style="color: #64748b; font-size: 14px;">
@if($attempt->reason === 'account_locked')
Si no fuiste vos, por favor desestimá y borrá este correo. Tu cuenta seguirá protegida.
@else
Si no solicitaste recuperar tu contraseña, podés ignorar este mensaje.
@endif
</p>