api/resources/views/auth/email-verified.blade.php

49 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Email vérifié</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #f4f7fb;
color: #172033;
font-family: Arial, Helvetica, sans-serif;
}
main {
width: min(100% - 32px, 480px);
padding: 32px;
background: #ffffff;
border: 1px solid #e6ebf2;
border-radius: 12px;
text-align: center;
}
h1 {
margin: 0 0 12px;
color: #101828;
font-size: 28px;
line-height: 1.2;
}
p {
margin: 0;
color: #475467;
font-size: 16px;
line-height: 1.6;
}
</style>
</head>
<body>
<main>
<h1>Email vérifié</h1>
<p>Ton adresse email a bien été validée. Tu peux maintenant retourner sur l'application.</p>
</main>
</body>
</html>