24 lines
998 B
PHP
24 lines
998 B
PHP
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Compte vérifié</title>
|
||
</head>
|
||
<body style="margin: 0; min-height: 100vh; display: grid; place-items: center; background: #f5efe6; color: #232323; font-family: Arial, sans-serif;">
|
||
<main style="width: min(100% - 32px, 520px); background: #ffffff; border-radius: 8px; padding: 32px; box-sizing: border-box;">
|
||
<p style="margin: 0 0 8px; color: #426fb3; font-size: 14px; font-weight: 700; text-transform: uppercase;">
|
||
{{ $appName }}
|
||
</p>
|
||
|
||
<h1 style="margin: 0 0 16px; color: #000000; font-size: 28px; line-height: 34px;">
|
||
{{ $alreadyVerified ? 'Compte déjà vérifié' : 'Compte vérifié' }}
|
||
</h1>
|
||
|
||
<p style="margin: 0; color: #232323; font-size: 16px; line-height: 24px;">
|
||
Tu peux maintenant retourner dans l’application.
|
||
</p>
|
||
</main>
|
||
</body>
|
||
</html>
|