File size: 3,279 Bytes
717cc3c
 
 
 
 
ab65381
717cc3c
 
 
 
ab65381
 
 
 
 
717cc3c
ab65381
 
 
 
 
 
 
 
717cc3c
ab65381
717cc3c
ab65381
 
 
 
 
 
 
 
717cc3c
ab65381
717cc3c
 
ab65381
717cc3c
ab65381
 
 
717cc3c
 
 
ab65381
 
717cc3c
 
 
ab65381
 
 
 
 
 
 
 
 
717cc3c
 
ab65381
 
 
717cc3c
ab65381
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
<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>KayseriPazarı - Giriş Yap</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>
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center">
    <div class="max-w-md w-full bg-white p-8 rounded-lg shadow-md">
        <div class="text-center mb-8">
            <h1 class="text-2xl font-bold text-primary-500">KayseriPazarı</h1>
            <p class="mt-2 text-gray-600">Hesabınıza giriş yapın</p>
        </div>
        <form>
            <div class="mb-4">
                <label class="block text-gray-700 mb-2" for="email">
                    E-posta 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="text-gray-400"></i>
                    </div>
                    <input type="email" id="email" class="w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="ornek@email.com">
                </div>
            </div>
            <div class="mb-6">
                <label class="block text-gray-700 mb-2" for="password">
                    Ş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="text-gray-400"></i>
                    </div>
                    <input type="password" id="password" class="w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent" placeholder="••••••••">
                </div>
            </div>
            <div class="flex items-center justify-between mb-6">
                <div class="flex items-center">
                    <input id="remember" type="checkbox" class="h-4 w-4 text-primary-500 focus:ring-primary-500 border-gray-300 rounded">
                    <label for="remember" class="ml-2 block text-sm text-gray-700">
                        Beni Hatırla
                    </label>
                </div>
                <div>
                    <a href="#" class="text-sm text-primary-500 hover:text-primary-600">
                        Şifremi Unuttum?
                    </a>
                </div>
            </div>
            <button type="submit" class="w-full bg-primary-500 hover:bg-primary-600 text-white py-2 px-4 rounded-md transition duration-300">
                Giriş Yap
            </button>
        </form>
        <div class="mt-6 text-center">
            <p class="text-gray-600">
                Hesabınız yok mu? 
                <a href="#" class="text-primary-500 hover:text-primary-600 font-medium">Kayıt Ol</a>
            </p>
        </div>
    </div>
    <script>
        feather.replace();
    </script>
</body>
</html>