Spaces:
Running
Running
File size: 1,806 Bytes
4e336b9 9489f50 4e336b9 85d11a4 4e336b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<!-- Standard head content -->
<title>Verify Information | Dossiya DAKOU</title>
</head>
<body class="bg-onyx text-offwhite font-source min-h-screen">
<!-- Navbar -->
<section class="px-6 md:px-12 lg:px-24 py-16 min-h-[80vh] bg-black">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl font-inter font-bold text-green-300 mb-8">Verify Information</h2>
<div class="bg-gray-900 bg-opacity-50 p-6 rounded-lg border border-orange">
<h3 class="text-xl font-inter text-orange mb-4">Items to Verify</h3>
<div class="space-y-4">
<div class="flex items-start">
<input type="checkbox" id="phone-check" class="mt-1 mr-3">
<label for="phone-check">
<span class="font-medium">Phone Number Format:</span>
<span class="text-teal">+250 796 892 820</span>
<p class="text-sm text-gray-400">(Currently showing international format)</p>
</label>
</div>
<div class="flex items-start">
<input type="checkbox" id="role-dates" class="mt-1 mr-3">
<label for="role-dates">
<span class="font-medium">IOM Role Duration:</span>
<span class="text-teal">May 2025 - July 2025</span>
<p class="text-sm text-gray-400">(Future dates need confirmation)</p>
</label>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
</body>
</html> |