Spaces:
Running
Running
File size: 3,738 Bytes
d2e555d 30b7646 d2e555d 30b7646 d2e555d 30b7646 d2e555d | 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AuthPortal</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#6366f1',
secondary: '#a855f7',
}
}
}
}
</script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-12">
<section class="hero-section bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl p-8 text-white">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Welcome to AuthPortal</h1>
<p class="text-xl mb-8">Secure authentication for modern applications</p>
<div class="flex flex-wrap justify-center gap-4">
<a href="/login" class="bg-white text-primary-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition-all">Log In</a>
<a href="/register" class="border-2 border-white text-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:bg-opacity-10 transition-all">Register</a>
</div>
</div>
</section>
<section class="features-section mt-16">
<h2 class="text-3xl font-bold text-center mb-12">Why Choose AuthPortal?</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all">
<div class="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="lock" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Secure Authentication</h3>
<p class="text-gray-600">Military-grade encryption protects your data at all times</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all">
<div class="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="zap" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Lightning Fast</h3>
<p class="text-gray-600">Experience blazing fast login and registration processes</p>
</div>
<div class="feature-card bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all">
<div class="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
<i data-feather="smartphone" class="text-primary-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Mobile Friendly</h3>
<p class="text-gray-600">Optimized for all devices from desktop to mobile</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |