Merhaba,
Instagram'ın mevcut giriş sayfasına alternatif bir giriş sayfası tasarladım.
Umarım beğenirsiniz.
Kodlar ;
Instagram'ın mevcut giriş sayfasına alternatif bir giriş sayfası tasarladım.
Umarım beğenirsiniz.
Kodlar ;
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login • Instagram</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-black flex items-center justify-center min-h-screen text-white">
<div class="bg-opacity-0 rounded-2xl shadow-xl w-full max-w-4xl flex">
<div class="hidden md:flex items-center justify-center w-1/2 rounded-l-2xl">
<div class="relative w-80 h-auto">
<img src="https://i.hizliresim.com/m85azvw.png" alt="Phone with Instagram Content" class="w-full h-auto object-contain">
</div>
</div>
<div class="w-full md:w-1/2 p-8">
<div class="text-center mb-8">
<img src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png" alt="Instagram Logo" class="mx-auto w-20 h-20 rounded-full shadow-md">
<h1 class="text-3xl font-extrabold text-gray-100 mt-6">Welcome Instagram</h1>
<p class="text-gray-400">Login to access your account</p>
</div>
<form>
<div class="mb-6">
<label for="email" class="block text-sm font-semibold text-gray-300 mb-2">Email, Username, or Phone</label>
<input
type="text"
id="email"
class="w-full px-4 py-3 border border-gray-500 bg-transparent text-gray-200 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:outline-none placeholder-gray-400"
placeholder="email, username or phone number"
required>
</div>
<div class="mb-6">
<label for="password" class="block text-sm font-semibold text-gray-300 mb-2">Password</label>
<input
type="password"
id="password"
class="w-full px-4 py-3 border border-gray-500 bg-transparent text-gray-200 rounded-lg shadow-sm focus:ring-2 focus:ring-blue-500 focus:outline-none placeholder-gray-400"
placeholder="••••••••"
required>
</div>
<div class="flex items-center justify-between mb-6">
<label class="flex items-center text-sm text-gray-400">
<input type="checkbox" class="h-4 w-4 text-blue-500 border-gray-600 bg-gray-700 rounded focus:ring-blue-400"> <span class="ml-2">Remember me</span>
</label>
<a href="#" class="text-sm text-blue-500 hover:underline">Forgot password?</a>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-3 px-4 rounded-lg font-semibold shadow-md hover:bg-blue-700 focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition duration-150">Log In</button>
</form>
<div class="mt-8 text-center">
<p class="text-gray-400 mb-4">Download the app:</p>
<div class="flex justify-center space-x-4">
<a href="https://play.google.com/store/search?q=instagram&c=apps" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg" alt="Google Play Store" class="h-12">
</a>
<a href="https://apps.apple.com/us/app/instagram/id389801252" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Download_on_the_App_Store_Badge.svg/1280px-Download_on_the_App_Store_Badge.svg.png" alt="Apple App Store" class="h-12">
</a>
</div>
</div>
</div>
</div>
</body>
</html>


