File size: 2,526 Bytes
b755c33
 
 
f608841
 
b755c33
 
 
 
f608841
b755c33
 
 
 
 
 
 
f608841
b755c33
 
 
 
 
f608841
b755c33
 
 
f608841
b755c33
f608841
b755c33
 
 
 
 
 
 
 
 
f608841
b755c33
 
f608841
 
b755c33
f608841
b755c33
 
 
f608841
b755c33
 
 
f608841
b755c33
 
 
f608841
 
b755c33
 
 
 
f608841
b755c33
 
 
 
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
<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>PiliçBox - Admin Giriş</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-red: #ff3d3d;
            --primary-yellow: #ffcc00;
            --dark-bg: #121212;
            --darker-bg: #0a0a0a;
            --light-text: #f5f5f5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
        }

        .login-card {
            background: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .neon-btn {
            position: relative;
            display: inline-block;
            padding: 12px 24px;
            color: var(--primary-yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            overflow: hidden;
            transition: 0.3s;
            border: 2px solid var(--primary-red);
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(255,61,61,0.15), 0 0 40px rgba(255,61,61,0.08);
            background: transparent;
        }

        .neon-btn:hover {
            background: var(--primary-red);
            color: #fff;
            box-shadow: 0 0 10px var(--primary-red), 0 0 40px var(--primary-red), 0 0 80px rgba(255,61,61,0.6);
        }
    </style>
</head>
<body class="min-h-screen flex items-center justify-center p-4">
    <div class="login-card rounded-xl p-8 max-w-md w-full mx-4 shadow-2xl">
        <div class="text-center mb-8">
            <div class="flex justify-center mb-4">
                <!-- https kullan; productionda local dosya koy -->
                <img src="https://via.placeholder.com/200" alt="PiliçBox Logo" class="h-16 w-16 rounded-full object-cover">
            </div>
            <h1 class="text-3xl font-bold">Piliç<span class="text-yellow-400">Box</span></h1>
            <p class="text-gray-400 mt-2">Admin Paneli Girişi</p>
        </div>

        <form action="dashboard.php" method="POST" class="space-y-6">
            <div>
                <label for="username" class="block text-gray-400 mb-2">Kullanıcı Adı</label>
                <div class="relative">