erenugr commited on
Commit
f608841
·
verified ·
1 Parent(s): b755c33

Update admin/login.php

Browse files
Files changed (1) hide show
  1. admin/login.php +16 -20
admin/login.php CHANGED
@@ -1,15 +1,13 @@
1
  <!DOCTYPE html>
2
  <html lang="tr">
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>PiliçBox - Admin Giriş</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
8
- <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
- <script src="https://unpkg.com/feather-icons"></script>
10
  <style>
11
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
12
-
13
  :root {
14
  --primary-red: #ff3d3d;
15
  --primary-yellow: #ffcc00;
@@ -17,19 +15,19 @@
17
  --darker-bg: #0a0a0a;
18
  --light-text: #f5f5f5;
19
  }
20
-
21
  body {
22
  font-family: 'Poppins', sans-serif;
23
  background-color: var(--dark-bg);
24
  color: var(--light-text);
25
  }
26
-
27
  .login-card {
28
  background: rgba(18, 18, 18, 0.8);
29
  backdrop-filter: blur(10px);
30
- border: 1px solid rgba(255, 255, 255, 0.1);
31
  }
32
-
33
  .neon-btn {
34
  position: relative;
35
  display: inline-block;
@@ -39,34 +37,32 @@
39
  letter-spacing: 2px;
40
  font-weight: 600;
41
  overflow: hidden;
42
- transition: 0.5s;
43
  border: 2px solid var(--primary-red);
44
  border-radius: 8px;
45
- box-shadow: 0 0 10px var(--primary-red), 0 0 40px var(--primary-red);
 
46
  }
47
-
48
  .neon-btn:hover {
49
  background: var(--primary-red);
50
  color: #fff;
51
- box-shadow: 0 0 10px var(--primary-red), 0 0 40px var(--primary-red), 0 0 80px var(--primary-red);
52
  }
53
  </style>
54
  </head>
55
- <body class="min-h-screen flex items-center justify-center">
56
  <div class="login-card rounded-xl p-8 max-w-md w-full mx-4 shadow-2xl">
57
  <div class="text-center mb-8">
58
  <div class="flex justify-center mb-4">
59
- <img src="http://static.photos/food/200x200/1" alt="PiliçBox Logo" class="h-16 w-16 rounded-full">
 
60
  </div>
61
  <h1 class="text-3xl font-bold">Piliç<span class="text-yellow-400">Box</span></h1>
62
  <p class="text-gray-400 mt-2">Admin Paneli Girişi</p>
63
  </div>
64
-
65
  <form action="dashboard.php" method="POST" class="space-y-6">
66
  <div>
67
  <label for="username" class="block text-gray-400 mb-2">Kullanıcı Adı</label>
68
  <div class="relative">
69
- <i data-feather="user" class="absolute left-3 top-3 text-gray-500"></i>
70
- <input type="text" id="username" name="username" required class="w-full bg
71
- </body>
72
- </html>
 
1
  <!DOCTYPE html>
2
  <html lang="tr">
3
  <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
  <title>PiliçBox - Admin Giriş</title>
7
  <script src="https://cdn.tailwindcss.com"></script>
 
 
8
  <style>
9
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
10
+
11
  :root {
12
  --primary-red: #ff3d3d;
13
  --primary-yellow: #ffcc00;
 
15
  --darker-bg: #0a0a0a;
16
  --light-text: #f5f5f5;
17
  }
18
+
19
  body {
20
  font-family: 'Poppins', sans-serif;
21
  background-color: var(--dark-bg);
22
  color: var(--light-text);
23
  }
24
+
25
  .login-card {
26
  background: rgba(18, 18, 18, 0.8);
27
  backdrop-filter: blur(10px);
28
+ border: 1px solid rgba(255, 255, 255, 0.06);
29
  }
30
+
31
  .neon-btn {
32
  position: relative;
33
  display: inline-block;
 
37
  letter-spacing: 2px;
38
  font-weight: 600;
39
  overflow: hidden;
40
+ transition: 0.3s;
41
  border: 2px solid var(--primary-red);
42
  border-radius: 8px;
43
+ box-shadow: 0 0 10px rgba(255,61,61,0.15), 0 0 40px rgba(255,61,61,0.08);
44
+ background: transparent;
45
  }
46
+
47
  .neon-btn:hover {
48
  background: var(--primary-red);
49
  color: #fff;
50
+ box-shadow: 0 0 10px var(--primary-red), 0 0 40px var(--primary-red), 0 0 80px rgba(255,61,61,0.6);
51
  }
52
  </style>
53
  </head>
54
+ <body class="min-h-screen flex items-center justify-center p-4">
55
  <div class="login-card rounded-xl p-8 max-w-md w-full mx-4 shadow-2xl">
56
  <div class="text-center mb-8">
57
  <div class="flex justify-center mb-4">
58
+ <!-- https kullan; productionda local dosya koy -->
59
+ <img src="https://via.placeholder.com/200" alt="PiliçBox Logo" class="h-16 w-16 rounded-full object-cover">
60
  </div>
61
  <h1 class="text-3xl font-bold">Piliç<span class="text-yellow-400">Box</span></h1>
62
  <p class="text-gray-400 mt-2">Admin Paneli Girişi</p>
63
  </div>
64
+
65
  <form action="dashboard.php" method="POST" class="space-y-6">
66
  <div>
67
  <label for="username" class="block text-gray-400 mb-2">Kullanıcı Adı</label>
68
  <div class="relative">