-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvalid.html
19 lines (19 loc) · 961 Bytes
/
invalid.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Email Verified</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-200">
<div class="max-w-lg mx-auto mt-10 bg-white rounded-lg shadow-2xl">
<div class="px-6 py-4">
<h2 class="text-2xl font-bold mb-2 text-center">Invalid Verification Code</h2>
<p class="text-gray-700 text-base mb-8 text-justify">We're sorry, but the verification code you entered is invalid. Please check your email for the correct code and try again.</p>
<a href="#" class="bg-indigo-500 hover:bg-indigo-600 text-white font-bold py-2 px-4 rounded-full focus:outline-none focus:shadow-outline flex justify-center mx-10">Resend Verification Code</a>
</div>
</div>
</body>
</html>