53 lines
3.1 KiB
PHP
53 lines
3.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Vérifie ton adresse email</title>
|
|
</head>
|
|
<body style="margin: 0; padding: 0; background: #f4f7fb; color: #172033; font-family: Arial, Helvetica, sans-serif;">
|
|
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" style="background: #f4f7fb; padding: 32px 16px;">
|
|
<tr>
|
|
<td align="center">
|
|
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" style="max-width: 560px; overflow: hidden; background: #ffffff; border: 1px solid #e6ebf2; border-radius: 12px;">
|
|
<tr>
|
|
<td style="padding: 32px 32px 16px;">
|
|
<p style="margin: 0 0 8px; color: #657086; font-size: 14px;">{{ config('app.name') }}</p>
|
|
<h1 style="margin: 0; color: #101828; font-size: 28px; line-height: 1.2;">Vérifie ton adresse email</h1>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 0 32px 24px;">
|
|
<p style="margin: 0 0 16px; color: #344054; font-size: 16px; line-height: 1.6;">
|
|
Bonjour {{ $notifiable->username }},
|
|
</p>
|
|
<p style="margin: 0 0 24px; color: #344054; font-size: 16px; line-height: 1.6;">
|
|
Clique sur le bouton ci-dessous pour confirmer ton adresse email et activer ton compte.
|
|
</p>
|
|
<p style="margin: 0 0 28px;">
|
|
<a href="{{ $verificationUrl }}" style="display: inline-block; padding: 14px 22px; background: #16a34a; border-radius: 8px; color: #ffffff; font-size: 16px; font-weight: 700; text-decoration: none;">
|
|
Vérifier mon email
|
|
</a>
|
|
</p>
|
|
<p style="margin: 0 0 16px; color: #667085; font-size: 14px; line-height: 1.6;">
|
|
Si le bouton ne fonctionne pas, ouvre ce lien dans ton navigateur :
|
|
</p>
|
|
<p style="margin: 0; word-break: break-all; color: #475467; font-size: 13px; line-height: 1.5;">
|
|
<a href="{{ $verificationUrl }}" style="color: #1570ef;">{{ $verificationUrl }}</a>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 20px 32px 32px; border-top: 1px solid #edf1f7;">
|
|
<p style="margin: 0; color: #98a2b3; font-size: 13px; line-height: 1.5;">
|
|
Si tu n'es pas à l'origine de cette demande, tu peux ignorer cet email.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|