<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<title>COVY — Checkout</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex,nofollow" />
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
sans-serif;
background: radial-gradient(circle at top left, #111827, #020617);
color: #f9fafb;
}
.card {
background: rgba(15, 23, 42, 0.9);
border-radius: 24px;
padding: 32px 24px;
box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
max-width: 420px;
width: 90%;
text-align: center;
border: 1px solid rgba(148, 163, 184, 0.3);
}
h1 {
font-size: 22px;
margin-bottom: 8px;
}
p {
font-size: 14px;
color: #cbd5f5;
margin-bottom: 20px;
line-height: 1.5;
}
.badge {
display: inline-block;
margin-top: 12px;
font-size: 12px;
padding: 6px 12px;
border-radius: 999px;
background: rgba(249, 115, 22, 0.15);
color: #f97316;
font-weight: 600;
}
</style>
</head>
<body>
<div class="card">
<h1>COVY — Paiements sécurisés</h1>
<p>
Cette page est utilisée uniquement pour le traitement des paiements
Stripe et les redirections automatiques vers l’application COVY.
</p>
<p>
Si tu vois cette page, tu n’as rien à faire ici.
<br />
Tu peux fermer cet onglet.
</p>
<div class="badge">checkout.covy.app</div>
</div>
</body>
</html>