web3district commited on
Commit
a247e80
·
verified ·
1 Parent(s): cf2cebb

please create a badass amazing Login sign in page for a project called 3rdParty - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +275 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
  title: 3rdpartylogin
3
- emoji: 💻
4
- colorFrom: indigo
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
  title: 3rdpartylogin
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,275 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>3rdParty | Secure Access</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ 'cyber-blue': '#00eeff',
15
+ 'cyber-purple': '#bd00ff',
16
+ 'dark-bg': '#0a0a1a',
17
+ },
18
+ animation: {
19
+ 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
20
+ 'float': 'float 6s ease-in-out infinite',
21
+ 'neon-glow': 'neon-glow 1.5s ease-in-out infinite alternate',
22
+ },
23
+ keyframes: {
24
+ float: {
25
+ '0%, 100%': { transform: 'translateY(0)' },
26
+ '50%': { transform: 'translateY(-20px)' },
27
+ },
28
+ 'neon-glow': {
29
+ '0%': { 'text-shadow': '0 0 5px #fff, 0 0 10px #fff, 0 0 15px #00eeff, 0 0 20px #00eeff, 0 0 25px #00eeff, 0 0 30px #00eeff, 0 0 35px #00eeff' },
30
+ '100%': { 'text-shadow': '0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00eeff, 0 0 40px #00eeff, 0 0 50px #00eeff, 0 0 60px #00eeff, 0 0 70px #00eeff' },
31
+ }
32
+ }
33
+ }
34
+ }
35
+ }
36
+ </script>
37
+ <style>
38
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
39
+
40
+ body {
41
+ font-family: 'Exo 2', sans-serif;
42
+ background-color: #0a0a1a;
43
+ background-image:
44
+ radial-gradient(at 20% 30%, rgba(65, 105, 225, 0.1) 0px, transparent 50%),
45
+ radial-gradient(at 80% 70%, rgba(138, 43, 226, 0.1) 0px, transparent 50%);
46
+ min-height: 100vh;
47
+ overflow-x: hidden;
48
+ position: relative;
49
+ }
50
+
51
+ .cyber-font {
52
+ font-family: 'Orbitron', sans-serif;
53
+ }
54
+
55
+ .cyber-border {
56
+ border: 1px solid rgba(0, 238, 255, 0.3);
57
+ box-shadow: 0 0 15px rgba(0, 238, 255, 0.2), inset 0 0 10px rgba(0, 238, 255, 0.1);
58
+ }
59
+
60
+ .cyber-input {
61
+ background: rgba(10, 15, 30, 0.7);
62
+ border: 1px solid rgba(0, 238, 255, 0.4);
63
+ transition: all 0.3s ease;
64
+ }
65
+
66
+ .cyber-input:focus {
67
+ border-color: #bd00ff;
68
+ box-shadow: 0 0 15px rgba(189, 0, 255, 0.5);
69
+ outline: none;
70
+ }
71
+
72
+ .cyber-btn {
73
+ background: linear-gradient(45deg, #00eeff, #bd00ff);
74
+ position: relative;
75
+ overflow: hidden;
76
+ transition: all 0.3s ease;
77
+ }
78
+
79
+ .cyber-btn:hover {
80
+ transform: translateY(-3px);
81
+ box-shadow: 0 10px 20px rgba(0, 238, 255, 0.3);
82
+ }
83
+
84
+ .cyber-btn:active {
85
+ transform: translateY(1px);
86
+ }
87
+
88
+ .cyber-btn::before {
89
+ content: '';
90
+ position: absolute;
91
+ top: 0;
92
+ left: -100%;
93
+ width: 100%;
94
+ height: 100%;
95
+ background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
96
+ transition: 0.5s;
97
+ }
98
+
99
+ .cyber-btn:hover::before {
100
+ left: 100%;
101
+ }
102
+
103
+ .grid-pattern {
104
+ background-image:
105
+ linear-gradient(rgba(0, 238, 255, 0.1) 1px, transparent 1px),
106
+ linear-gradient(90deg, rgba(0, 238, 255, 0.1) 1px, transparent 1px);
107
+ background-size: 30px 30px;
108
+ }
109
+
110
+ .scanline {
111
+ position: absolute;
112
+ top: 0;
113
+ left: 0;
114
+ width: 100%;
115
+ height: 100%;
116
+ background: linear-gradient(rgba(0, 238, 255, 0) 50%, rgba(0, 238, 255, 0.05) 50%);
117
+ background-size: 100% 4px;
118
+ pointer-events: none;
119
+ animation: scanline 8s linear infinite;
120
+ }
121
+
122
+ @keyframes scanline {
123
+ 0% { background-position: 0 0; }
124
+ 100% { background-position: 0 100%; }
125
+ }
126
+
127
+ .glow {
128
+ filter: drop-shadow(0 0 8px rgba(0, 238, 255, 0.7));
129
+ }
130
+
131
+ .social-btn {
132
+ transition: all 0.3s ease;
133
+ border: 1px solid rgba(0, 238, 255, 0.3);
134
+ }
135
+
136
+ .social-btn:hover {
137
+ transform: translateY(-3px);
138
+ border-color: #bd00ff;
139
+ box-shadow: 0 5px 15px rgba(189, 0, 255, 0.3);
140
+ }
141
+
142
+ .hex-pattern {
143
+ background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300eeff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
144
+ }
145
+ </style>
146
+ </head>
147
+ <body class="text-white relative">
148
+ <!-- Animated Background Elements -->
149
+ <div class="fixed top-0 left-0 w-full h-full overflow-hidden z-0">
150
+ <div class="absolute top-10 left-10 w-4 h-4 rounded-full bg-cyber-blue animate-pulse-slow"></div>
151
+ <div class="absolute top-1/4 right-20 w-6 h-6 rounded-full bg-cyber-purple animate-pulse-slow animation-delay-1000"></div>
152
+ <div class="absolute bottom-20 left-1/3 w-8 h-8 rounded-full bg-cyber-blue animate-pulse-slow animation-delay-2000"></div>
153
+ <div class="absolute top-2/3 right-1/4 w-5 h-5 rounded-full bg-cyber-purple animate-pulse-slow animation-delay-3000"></div>
154
+
155
+ <div class="absolute top-1/3 left-1/4 w-40 h-40 rounded-full bg-cyber-purple opacity-10 animate-pulse-slow"></div>
156
+ <div class="absolute bottom-1/4 right-1/3 w-60 h-60 rounded-full bg-cyber-blue opacity-10 animate-pulse-slow animation-delay-2000"></div>
157
+
158
+ <div class="scanline"></div>
159
+ </div>
160
+
161
+ <!-- Main Content -->
162
+ <div class="min-h-screen flex items-center justify-center p-4 relative z-10">
163
+ <div class="w-full max-w-4xl flex flex-col md:flex-row bg-dark-bg bg-opacity-80 backdrop-blur-lg rounded-xl overflow-hidden cyber-border">
164
+ <!-- Left Side - Visual Area -->
165
+ <div class="w-full md:w-2/5 p-8 flex flex-col justify-center items-center text-center bg-gradient-to-br from-cyan-900/20 to-purple-900/20 relative overflow-hidden">
166
+ <div class="hex-pattern absolute inset-0"></div>
167
+ <div class="relative z-10">
168
+ <div class="glow mb-6 animate-float">
169
+ <div class="bg-gray-800 border-2 border-cyber-blue rounded-xl p-4 inline-block">
170
+ <i class="fas fa-cube text-cyber-blue text-5xl"></i>
171
+ </div>
172
+ </div>
173
+ <h1 class="cyber-font text-4xl md:text-5xl font-bold mb-4 text-transparent bg-clip-text bg-gradient-to-r from-cyber-blue to-cyber-purple animate-neon-glow">
174
+ 3rd<span class="text-cyber-purple">Party</span>
175
+ </h1>
176
+ <p class="text-cyber-blue font-semibold">SECURE ACCESS PORTAL</p>
177
+ <div class="mt-8">
178
+ <div class="flex justify-center space-x-2 mb-4">
179
+ <div class="w-3 h-3 rounded-full bg-cyber-blue"></div>
180
+ <div class="w-3 h-3 rounded-full bg-cyber-purple"></div>
181
+ <div class="w-3 h-3 rounded-full bg-cyber-blue"></div>
182
+ </div>
183
+ <p class="text-sm text-gray-400">Advanced security protocols engaged</p>
184
+ </div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Right Side - Login Form -->
189
+ <div class="w-full md:w-3/5 p-8 md:p-12">
190
+ <h2 class="cyber-font text-2xl md:text-3xl font-bold mb-2">Access Restricted</h2>
191
+ <p class="text-gray-400 mb-8">Enter your credentials to proceed</p>
192
+
193
+ <form class="space-y-6">
194
+ <div>
195
+ <label class="block text-sm font-medium text-cyber-blue mb-2">USER IDENTIFICATION</label>
196
+ <div class="relative">
197
+ <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
198
+ <i class="fas fa-user text-cyber-blue"></i>
199
+ </div>
200
+ <input type="text" class="cyber-input w-full pl-10 pr-4 py-3 rounded-lg text-white placeholder-gray-500 focus:ring-0" placeholder="Enter your ID">
201
+ </div>
202
+ </div>
203
+
204
+ <div>
205
+ <label class="block text-sm font-medium text-cyber-blue mb-2">SECURITY KEY</label>
206
+ <div class="relative">
207
+ <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
208
+ <i class="fas fa-lock text-cyber-blue"></i>
209
+ </div>
210
+ <input type="password" class="cyber-input w-full pl-10 pr-4 py-3 rounded-lg text-white placeholder-gray-500 focus:ring-0" placeholder="••••••••">
211
+ </div>
212
+ </div>
213
+
214
+ <div class="flex items-center justify-between">
215
+ <div class="flex items-center">
216
+ <input id="remember" type="checkbox" class="h-4 w-4 text-cyber-blue focus:ring-cyber-blue border-gray-600 rounded bg-gray-800">
217
+ <label for="remember" class="ml-2 block text-sm text-gray-400">Remember this device</label>
218
+ </div>
219
+ <a href="#" class="text-sm font-medium text-cyber-blue hover:text-cyber-purple transition">Recover access?</a>
220
+ </div>
221
+
222
+ <div>
223
+ <button type="submit" class="cyber-btn w-full py-3 px-4 rounded-lg font-bold text-gray-900 cyber-font text-lg">
224
+ <i class="fas fa-terminal mr-2"></i> AUTHENTICATE
225
+ </button>
226
+ </div>
227
+
228
+ <div class="relative flex items-center">
229
+ <div class="flex-grow border-t border-gray-700"></div>
230
+ <span class="flex-shrink mx-4 text-gray-500 text-sm">OR CONTINUE WITH</span>
231
+ <div class="flex-grow border-t border-gray-700"></div>
232
+ </div>
233
+
234
+ <div class="grid grid-cols-3 gap-3">
235
+ <button class="social-btn py-2 px-4 rounded-lg flex items-center justify-center">
236
+ <i class="fab fa-google text-red-400"></i>
237
+ </button>
238
+ <button class="social-btn py-2 px-4 rounded-lg flex items-center justify-center">
239
+ <i class="fab fa-microsoft text-blue-400"></i>
240
+ </button>
241
+ <button class="social-btn py-2 px-4 rounded-lg flex items-center justify-center">
242
+ <i class="fab fa-apple text-gray-200"></i>
243
+ </button>
244
+ </div>
245
+ </form>
246
+
247
+ <div class="mt-8 text-center">
248
+ <p class="text-gray-500 text-sm">
249
+ New to 3rdParty?
250
+ <a href="#" class="text-cyber-blue hover:text-cyber-purple font-medium ml-1">Request access</a>
251
+ </p>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Footer -->
258
+ <div class="absolute bottom-0 left-0 w-full py-4 text-center text-gray-500 text-sm z-10">
259
+ <p>© 2023 3rdParty Systems. All access monitored. Unauthorized entry prohibited.</p>
260
+ <div class="mt-2 flex justify-center space-x-4">
261
+ <a href="#" class="hover:text-cyber-blue transition">Security</a>
262
+ <a href="#" class="hover:text-cyber-blue transition">Privacy</a>
263
+ <a href="#" class="hover:text-cyber-blue transition">Terms</a>
264
+ </div>
265
+ </div>
266
+
267
+ <!-- Floating Particles -->
268
+ <div class="fixed top-0 left-0 w-full h-full pointer-events-none z-0">
269
+ <div class="particle absolute top-20 left-1/4 w-2 h-2 bg-cyber-blue rounded-full animate-float"></div>
270
+ <div class="particle absolute top-40 right-1/3 w-1.5 h-1.5 bg-cyber-purple rounded-full animate-float animation-delay-2000"></div>
271
+ <div class="particle absolute bottom-1/3 left-1/2 w-1 h-1 bg-cyber-blue rounded-full animate-float animation-delay-3000"></div>
272
+ <div class="particle absolute top-1/2 right-20 w-2.5 h-2.5 bg-cyber-purple rounded-full animate-float animation-delay-1000"></div>
273
+ </div>
274
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=web3district/3rdpartylogin" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
275
+ </html>