Spaces:
Running
Running
File size: 7,364 Bytes
717cc3c | 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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | <!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KayseriPazarı - Kayıt Ol</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.auth-bg {
background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,255,255,1) 100%);
}
.input-focus:focus {
border-color: #FFD700;
box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}
</style>
</head>
<body class="auth-bg min-h-screen flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-md w-full space-y-8 bg-white p-10 rounded-lg shadow-xl">
<div>
<img class="mx-auto h-12 w-auto" src="https://cdn-icons-png.flaticon.com/512/3144/3144456.png" alt="KayseriPazarı">
<h2 class="mt-6 text-center text-3xl font-extrabold text-gray-900">
Yeni Hesap Oluştur
</h2>
<p class="mt-2 text-center text-sm text-gray-600">
veya <a href="login.html" class="font-medium text-primary-600 hover:text-primary-500"> giriş yapın </a>
</p>
</div>
<form class="mt-8 space-y-6" action="#" method="POST">
<input type="hidden" name="remember" value="true">
<div class="rounded-md shadow-sm space-y-4">
<div>
<label for="full-name" class="sr-only">Tam Adınız</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i data-feather="user" class="h-5 w-5 text-gray-400"></i>
</div>
<input id="full-name" name="full-name" type="text" autocomplete="name" required class="appearance-none block w-full pl-10 pr-3 py-3 border border-gray-300 rounded-md placeholder-gray-500 text-gray-900 input-focus focus:outline-none sm:text-sm" placeholder="Tam Adınız">
</div>
</div>
<div>
<label for="email-address" class="sr-only">Email adresi</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i data-feather="mail" class="h-5 w-5 text-gray-400"></i>
</div>
<input id="email-address" name="email" type="email" autocomplete="email" required class="appearance-none block w-full pl-10 pr-3 py-3 border border-gray-300 rounded-md placeholder-gray-500 text-gray-900 input-focus focus:outline-none sm:text-sm" placeholder="Email adresi">
</div>
</div>
<div>
<label for="password" class="sr-only">Şifre</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i data-feather="lock" class="h-5 w-5 text-gray-400"></i>
</div>
<input id="password" name="password" type="password" autocomplete="new-password" required class="appearance-none block w-full pl-10 pr-3 py-3 border border-gray-300 rounded-md placeholder-gray-500 text-gray-900 input-focus focus:outline-none sm:text-sm" placeholder="Şifre">
</div>
</div>
<div>
<label for="confirm-password" class="sr-only">Şifreyi Onayla</label>
<div class="relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i data-feather="lock" class="h-5 w-5 text-gray-400"></i>
</div>
<input id="confirm-password" name="confirm-password" type="password" autocomplete="new-password" required class="appearance-none block w-full pl-10 pr-3 py-3 border border-gray-300 rounded-md placeholder-gray-500 text-gray-900 input-focus focus:outline-none sm:text-sm" placeholder="Şifreyi Onayla">
</div>
</div>
</div>
<div class="flex items-center">
<input id="terms" name="terms" type="checkbox" class="h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded" required>
<label for="terms" class="ml-2 block text-sm text-gray-900">
<a href="#" class="font-medium text-primary-600 hover:text-primary-500">Kullanım Koşulları</a> ve <a href="#" class="font-medium text-primary-600 hover:text-primary-500">Gizlilik Politikasını</a> kabul ediyorum
</label>
</div>
<div>
<button type="submit" class="group relative w-full flex justify-center py-3 px-4 border border-transparent text-sm font-medium rounded-md text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500">
<span class="absolute left-0 inset-y-0 flex items-center pl-3">
<i data-feather="user-plus" class="h-5 w-5 text-primary-200 group-hover:text-primary-100"></i>
</span>
Kayıt Ol
</button>
</div>
</form>
<div class="mt-6">
<div class="relative">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t border-gray-300"></div>
</div>
<div class="relative flex justify-center text-sm">
<span class="px-2 bg-white text-gray-500">
Veya sosyal medya ile kayıt ol
</span>
</div>
</div>
<div class="mt-6 grid grid-cols-3 gap-3">
<div>
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<i data-feather="facebook" class="h-5 w-5 text-blue-600"></i>
</a>
</div>
<div>
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<i data-feather="twitter" class="h-5 w-5 text-blue-400"></i>
</a>
</div>
<div>
<a href="#" class="w-full inline-flex justify-center py-2 px-4 border border-gray-300 rounded-md shadow-sm bg-white text-sm font-medium text-gray-500 hover:bg-gray-50">
<i data-feather="google" class="h-5 w-5 text-red-500"></i>
</a>
</div>
</div>
</div>
</div>
<script>feather.replace();</script>
</body>
</html>
|