Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Mgerezo - Marketing Platform for Artists</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6e8efb, #a777e3); | |
| } | |
| .profile-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0,0,0,0.1); | |
| } | |
| .artwork-card { | |
| transition: all 0.3s ease; | |
| } | |
| .artwork-card:hover { | |
| transform: scale(1.03); | |
| } | |
| .nav-link:hover { | |
| color: #a777e3; | |
| } | |
| #signupModal, #loginModal { | |
| transition: all 0.3s ease; | |
| } | |
| .modal-open { | |
| opacity: 1; | |
| visibility: visible; | |
| transform: scale(1); | |
| } | |
| .modal-closed { | |
| opacity: 0; | |
| visibility: hidden; | |
| transform: scale(0.9); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-md sticky top-0 z-50"> | |
| <div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i class="fas fa-palette text-purple-600 text-2xl"></i> | |
| <span class="text-xl font-bold text-gray-800">ArtConnect</span> | |
| </div> | |
| <div class="hidden md:flex space-x-6"> | |
| <a href="#" class="nav-link text-gray-600 hover:text-purple-600 transition">Discover</a> | |
| <a href="#" class="nav-link text-gray-600 hover:text-purple-600 transition">Marketplace</a> | |
| <a href="#" class="nav-link text-gray-600 hover:text-purple-600 transition">Resources</a> | |
| <a href="#" class="nav-link text-gray-600 hover:text-purple-600 transition">Jobs</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <button onclick="openLoginModal()" class="px-4 py-2 text-gray-600 hover:text-purple-600 transition">Login</button> | |
| <button onclick="openSignupModal()" class="px-4 py-2 bg-purple-600 text-white rounded-md hover:bg-purple-700 transition">Join Now</button> | |
| <button class="md:hidden text-gray-600"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="gradient-bg text-white py-20"> | |
| <div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">Connect, Showcase & Grow Your Art Career</h1> | |
| <p class="text-xl mb-8">The professional network for artists to showcase their work, find opportunities, and connect with collectors and galleries.</p> | |
| <div class="flex space-x-4"> | |
| <button onclick="openSignupModal()" class="px-6 py-3 bg-white text-purple-600 rounded-md font-semibold hover:bg-gray-100 transition">Join Free</button> | |
| <button class="px-6 py-3 border border-white text-white rounded-md font-semibold hover:bg-white hover:text-purple-600 transition">Learn More</button> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <div class="relative w-full max-w-md"> | |
| <div class="absolute -top-6 -left-6 w-32 h-32 bg-yellow-300 rounded-full opacity-20"></div> | |
| <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-blue-300 rounded-full opacity-20"></div> | |
| <div class="relative bg-white rounded-xl shadow-xl overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1547891654-e67ed7d5f7f2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artist profile example" class="w-full h-auto"> | |
| <div class="p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mr-3"> | |
| <i class="fas fa-user text-purple-600"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-gray-800">Maria Rodriguez</h3> | |
| <p class="text-sm text-gray-600">Mixed Media Artist | New York</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 flex justify-between"> | |
| <span class="text-sm text-gray-500">12.5k followers</span> | |
| <button class="text-xs bg-purple-600 text-white px-3 py-1 rounded-full">Follow</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Why Artists Love ArtConnect</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition"> | |
| <div class="w-14 h-14 bg-purple-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-eye text-purple-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Increased Visibility</h3> | |
| <p class="text-gray-600">Get your work seen by galleries, collectors, and art enthusiasts worldwide.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition"> | |
| <div class="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-briefcase text-blue-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Career Opportunities</h3> | |
| <p class="text-gray-600">Find commissions, residencies, exhibitions, and full-time positions.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition"> | |
| <div class="w-14 h-14 bg-green-100 rounded-full flex items-center justify-center mb-4"> | |
| <i class="fas fa-chart-line text-green-600 text-xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Marketing Tools</h3> | |
| <p class="text-gray-600">Access analytics, promotional tools, and professional branding resources.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Artist Showcase --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center mb-8"> | |
| <h2 class="text-3xl font-bold text-gray-800">Featured Artists</h2> | |
| <a href="#" class="text-purple-600 hover:underline">View all</a> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <!-- Artist Card 1 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md profile-card transition duration-300"> | |
| <div class="relative h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artist work" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-center mb-3"> | |
| <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center mr-3"> | |
| <i class="fas fa-user text-purple-600"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold">James Wilson</h3> | |
| <p class="text-xs text-gray-500">Photographer</p> | |
| </div> | |
| </div> | |
| <p class="text-sm text-gray-600 mb-3">Specializing in urban landscapes and portrait photography with a cinematic touch.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-xs text-gray-500">8.2k followers</span> | |
| <button class="text-xs bg-purple-600 text-white px-3 py-1 rounded-full hover:bg-purple-700 transition">Follow</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Artist Card 2 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md profile-card transition duration-300"> | |
| <div class="relative h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1547891654-e67ed7d5f7f2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artist work" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-center mb-3"> | |
| <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3"> | |
| <i class="fas fa-user text-blue-600"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold">Sophie Chen</h3> | |
| <p class="text-xs text-gray-500">Digital Artist</p> | |
| </div> | |
| </div> | |
| <p class="text-sm text-gray-600 mb-3">Creating vibrant digital illustrations with a focus on fantasy and character design.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-xs text-gray-500">15.7k followers</span> | |
| <button class="text-xs bg-blue-600 text-white px-3 py-1 rounded-full hover:bg-blue-700 transition">Follow</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Artist Card 3 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md profile-card transition duration-300"> | |
| <div class="relative h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artist work" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-center mb-3"> | |
| <div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3"> | |
| <i class="fas fa-user text-green-600"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold">Marcus Johnson</h3> | |
| <p class="text-xs text-gray-500">Sculptor</p> | |
| </div> | |
| </div> | |
| <p class="text-sm text-gray-600 mb-3">Contemporary sculptor working with recycled materials to create thought-provoking installations.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-xs text-gray-500">6.5k followers</span> | |
| <button class="text-xs bg-green-600 text-white px-3 py-1 rounded-full hover:bg-green-700 transition">Follow</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Artist Card 4 --> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-md profile-card transition duration-300"> | |
| <div class="relative h-48 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artist work" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex items-center mb-3"> | |
| <div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center mr-3"> | |
| <i class="fas fa-user text-yellow-600"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-semibold">Elena Petrov</h3> | |
| <p class="text-xs text-gray-500">Painter</p> | |
| </div> | |
| </div> | |
| <p class="text-sm text-gray-600 mb-3">Abstract expressionist painter exploring the relationship between color and emotion.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-xs text-gray-500">9.3k followers</span> | |
| <button class="text-xs bg-yellow-600 text-white px-3 py-1 rounded-full hover:bg-yellow-700 transition">Follow</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Artwork Showcase --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center mb-8"> | |
| <h2 class="text-3xl font-bold text-gray-800">Trending Artwork</h2> | |
| <a href="#" class="text-purple-600 hover:underline">Browse all</a> | |
| </div> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Artwork 1 --> | |
| <div class="artwork-card bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative h-64 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1579547945413-497e1b99dac0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artwork" class="w-full h-full object-cover"> | |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-purple-100 flex items-center justify-center mr-2"> | |
| <i class="fas fa-user text-purple-600 text-xs"></i> | |
| </div> | |
| <span class="text-white text-sm">@jameswilson</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-semibold mb-1">Urban Reflections</h3> | |
| <p class="text-sm text-gray-500 mb-3">Photography | Limited Edition Prints Available</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm font-semibold">$450+</span> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-500 hover:text-purple-600"><i class="far fa-heart"></i></button> | |
| <button class="text-gray-500 hover:text-purple-600"><i class="far fa-bookmark"></i></button> | |
| <button class="text-gray-500 hover:text-purple-600"><i class="fas fa-share-alt"></i></button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Artwork 2 --> | |
| <div class="artwork-card bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative h-64 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1547891654-e67ed7d5f7f2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artwork" class="w-full h-full object-cover"> | |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-blue-100 flex items-center justify-center mr-2"> | |
| <i class="fas fa-user text-blue-600 text-xs"></i> | |
| </div> | |
| <span class="text-white text-sm">@sophiechen</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-semibold mb-1">Digital Dreamscape</h3> | |
| <p class="text-sm text-gray-500 mb-3">Digital Art | Prints Available</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm font-semibold">$200+</span> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-500 hover:text-blue-600"><i class="far fa-heart"></i></button> | |
| <button class="text-gray-500 hover:text-blue-600"><i class="far fa-bookmark"></i></button> | |
| <button class="text-gray-500 hover:text-blue-600"><i class="fas fa-share-alt"></i></button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Artwork 3 --> | |
| <div class="artwork-card bg-white rounded-xl overflow-hidden shadow-md"> | |
| <div class="relative h-64 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Artwork" class="w-full h-full object-cover"> | |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 rounded-full bg-green-100 flex items-center justify-center mr-2"> | |
| <i class="fas fa-user text-green-600 text-xs"></i> | |
| </div> | |
| <span class="text-white text-sm">@marcusjohnson</span> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="p-4"> | |
| <h3 class="font-semibold mb-1">Metamorphosis</h3> | |
| <p class="text-sm text-gray-500 mb-3">Sculpture | Unique Piece</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-sm font-semibold">$2,800</span> | |
| <div class="flex space-x-2"> | |
| <button class="text-gray-500 hover:text-green-600"><i class="far fa-heart"></i></button> | |
| <button class="text-gray-500 hover:text-green-600"><i class="far fa-bookmark"></i></button> | |
| <button class="text-gray-500 hover:text-green-600"><i class="fas fa-share-alt"></i></button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Call to Action --> | |
| <section class="py-20 gradient-bg text-white"> | |
| <div class="container mx-auto px-4 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Grow Your Art Career?</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto">Join thousands of artists who are connecting, selling, and advancing their careers with ArtConnect.</p> | |
| <button onclick="openSignupModal()" class="px-8 py-4 bg-white text-purple-600 rounded-md font-bold hover:bg-gray-100 transition text-lg">Create Your Free Profile</button> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2 mb-4"> | |
| <i class="fas fa-palette text-purple-400 text-2xl"></i> | |
| <span class="text-xl font-bold">ArtConnect</span> | |
| </div> | |
| <p class="text-gray-400">The professional network for artists to showcase their work, find opportunities, and connect with collectors and galleries.</p> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">For Artists</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Create Profile</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Marketplace</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Career Resources</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Artist Directory</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">For Collectors</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Browse Artwork</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Commission Artists</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Art Fairs</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Collector Resources</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-lg font-semibold mb-4">Company</h3> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 ArtConnect. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-pinterest-p"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Signup Modal --> | |
| <div id="signupModal" class="modal-closed fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50 transition-all duration-300"> | |
| <div class="bg-white rounded-xl max-w-md w-full mx-4 overflow-hidden shadow-xl transform transition-all"> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h3 class="text-2xl font-bold text-gray-800">Join ArtConnect</h3> | |
| <button onclick="closeSignupModal()" class="text-gray-500 hover:text-gray-700"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| <div class="mb-6"> | |
| <button class="w-full flex items-center justify-center px-4 py-3 border border-gray-300 rounded-md mb-3 hover:bg-gray-50 transition"> | |
| <i class="fab fa-google text-red-500 mr-2"></i> | |
| Continue with Google | |
| </button> | |
| <button class="w-full flex items-center justify-center px-4 py-3 border border-gray-300 rounded-md hover:bg-gray-50 transition"> | |
| <i class="fab fa-facebook-f text-blue-600 mr-2"></i> | |
| Continue with Facebook | |
| </button> | |
| </div> | |
| <div class="flex items-center mb-6"> | |
| <div class="flex-grow border-t border-gray-300"></div> | |
| <span class="mx-4 text-gray-500">or</span> | |
| <div class="flex-grow border-t border-gray-300"></div> | |
| </div> | |
| <form id="signupForm" class="space-y-4"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Full Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="Your name"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label> | |
| <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="your@email.com"> | |
| </div> | |
| <div> | |
| <label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label> | |
| <input type="password" id="password" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="••••••••"> | |
| </div> | |
| <div class="flex items-center"> | |
| <input type="checkbox" id="terms" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded"> | |
| <label for="terms" class="ml-2 block text-sm text-gray-700"> | |
| I agree to the <a href="#" class="text-purple-600 hover:underline">Terms</a> and <a href="#" class="text-purple-600 hover:underline">Privacy Policy</a> | |
| </label> | |
| </div> | |
| <button type="submit" class="w-full bg-purple-600 text-white py-3 rounded-md font-semibold hover:bg-purple-700 transition">Create Account</button> | |
| </form> | |
| <div class="mt-4 text-center"> | |
| <p class="text-sm text-gray-600">Already have an account? <button onclick="switchToLogin()" class="text-purple-600 hover:underline">Log in</button></p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Login Modal --> | |
| <div id="loginModal" class="modal-closed fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50 transition-all duration-300"> | |
| <div class="bg-white rounded-xl max-w-md w-full mx-4 overflow-hidden shadow-xl transform transition-all"> | |
| <div class="p-6"> | |
| <div class="flex justify-between items-center mb-4"> | |
| <h3 class="text-2xl font-bold text-gray-800">Welcome Back</h3> | |
| <button onclick="closeLoginModal()" class="text-gray-500 hover:text-gray-700"> | |
| <i class="fas fa-times"></i> | |
| </button> | |
| </div> | |
| <div class="mb-6"> | |
| <button class="w-full flex items-center justify-center px-4 py-3 border border-gray-300 rounded-md mb-3 hover:bg-gray-50 transition"> | |
| <i class="fab fa-google text-red-500 mr-2"></i> | |
| Continue with Google | |
| </button> | |
| <button class="w-full flex items-center justify-center px-4 py-3 border border-gray-300 rounded-md hover:bg-gray-50 transition"> | |
| <i class="fab fa-facebook-f text-blue-600 mr-2"></i> | |
| Continue with Facebook | |
| </button> | |
| </div> | |
| <div class="flex items-center mb-6"> | |
| <div class="flex-grow border-t border-gray-300"></div> | |
| <span class="mx-4 text-gray-500">or</span> | |
| <div class="flex-grow border-t border-gray-300"></div> | |
| </div> | |
| <form id="loginForm" class="space-y-4"> | |
| <div> | |
| <label for="loginEmail" class="block text-sm font-medium text-gray-700 mb-1">Email</label> | |
| <input type="email" id="loginEmail" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="your@email.com"> | |
| </div> | |
| <div> | |
| <label for="loginPassword" class="block text-sm font-medium text-gray-700 mb-1">Password</label> | |
| <input type="password" id="loginPassword" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-2 focus:ring-purple-600 focus:border-transparent" placeholder="••••••••"> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <input type="checkbox" id="remember" class="h-4 w-4 text-purple-600 focus:ring-purple-500 border-gray-300 rounded"> | |
| <label for="remember" class="ml-2 block text-sm text-gray-700">Remember me</label> | |
| </div> | |
| <a href="#" class="text-sm text-purple-600 hover:underline">Forgot password?</a> | |
| </div> | |
| <button type="submit" class="w-full bg-purple-600 text-white py-3 rounded-md font-semibold hover:bg-purple-700 transition">Log In</button> | |
| </form> | |
| <div class="mt-4 text-center"> | |
| <p class="text-sm text-gray-600">Don't have an account? <button onclick="switchToSignup()" class="text-purple-600 hover:underline">Sign up</button></p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Modal functions | |
| function openSignupModal() { | |
| document.getElementById('signupModal').classList.remove('modal-closed'); | |
| document.getElementById('signupModal').classList.add('modal-open'); | |
| } | |
| function closeSignupModal() { | |
| document.getElementById('signupModal').classList.remove('modal-open'); | |
| document.getElementById('signupModal').classList.add('modal-closed'); | |
| } | |
| function openLoginModal() { | |
| document.getElementById('loginModal').classList.remove('modal-closed'); | |
| document.getElementById('loginModal').classList.add('modal-open'); | |
| } | |
| function closeLoginModal() { | |
| document.getElementById('loginModal').classList.remove('modal-open'); | |
| document.getElementById('loginModal').classList.add('modal-closed'); | |
| } | |
| function switchToLogin() { | |
| closeSignupModal(); | |
| openLoginModal(); | |
| } | |
| function switchToSignup() { | |
| closeLoginModal(); | |
| openSignupModal(); | |
| } | |
| // Form submission | |
| document.getElementById('signupForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Here you would normally handle the signup logic | |
| alert('Account created successfully!'); | |
| closeSignupModal(); | |
| }); | |
| document.getElementById('loginForm').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Here you would normally handle the login logic | |
| alert('Logged in successfully!'); | |
| closeLoginModal(); | |
| }); | |
| // Close modals when clicking outside | |
| window.addEventListener('click', function(e) { | |
| if (e.target === document.getElementById('signupModal')) { | |
| closeSignupModal(); | |
| } | |
| if (e.target === document.getElementById('loginModal')) { | |
| closeLoginModal(); | |
| } | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=KagisoTheArtist/mjolo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |