docto41 commited on
Commit
3306411
·
verified ·
1 Parent(s): de81a03

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +5 -3
  2. index.html +348 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Code Generator
3
- emoji: 😻
4
  colorFrom: yellow
5
  colorTo: red
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: code-generator
3
+ emoji: 🐳
4
  colorFrom: yellow
5
  colorTo: red
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,348 @@
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>Code Generator Pro | Envato & Cocadenyon</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
+ <style>
10
+ @keyframes pulse {
11
+ 0%, 100% { opacity: 1; }
12
+ 50% { opacity: 0.5; }
13
+ }
14
+ .animate-pulse-slow {
15
+ animation: pulse 3s infinite;
16
+ }
17
+ .glow-text {
18
+ text-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
19
+ }
20
+ .terminal-bg {
21
+ background-color: #011627;
22
+ background-image: radial-gradient(circle, rgba(1, 22, 39, 0.8) 0%, rgba(1, 22, 39, 1) 100%);
23
+ }
24
+ .code-block {
25
+ font-family: 'Courier New', monospace;
26
+ background-color: rgba(0, 0, 0, 0.3);
27
+ border-left: 3px solid #3b82f6;
28
+ }
29
+ .progress-bar {
30
+ height: 4px;
31
+ background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #3b82f6 100%);
32
+ background-size: 200% 100%;
33
+ animation: progress 2s linear infinite;
34
+ }
35
+ @keyframes progress {
36
+ 0% { background-position: 0% 50%; }
37
+ 100% { background-position: 200% 50%; }
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="terminal-bg text-gray-100 min-h-screen">
42
+ <div class="container mx-auto px-4 py-8 max-w-4xl">
43
+ <!-- Header -->
44
+ <header class="flex flex-col items-center mb-10">
45
+ <div class="flex items-center mb-4">
46
+ <i class="fas fa-lock-open text-blue-400 text-4xl mr-3"></i>
47
+ <h1 class="text-3xl md:text-4xl font-bold glow-text">
48
+ <span class="text-blue-400">Code</span>
49
+ <span class="text-green-400">Generator</span>
50
+ <span class="text-purple-400">Pro</span>
51
+ </h1>
52
+ </div>
53
+ <p class="text-gray-400 text-center max-w-lg">
54
+ Premium access code generator for Envato Elements & Cocadenyon Marketplaces
55
+ <br>
56
+ <span class="text-xs text-yellow-400">For educational purposes only</span>
57
+ </p>
58
+ </header>
59
+
60
+ <!-- Main Card -->
61
+ <div class="bg-gray-900 bg-opacity-70 rounded-xl overflow-hidden shadow-2xl border border-gray-800 mb-8">
62
+ <!-- Progress bar -->
63
+ <div class="progress-bar"></div>
64
+
65
+ <div class="p-6">
66
+ <!-- Generator Controls -->
67
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
68
+ <!-- Platform Selection -->
69
+ <div>
70
+ <h3 class="text-lg font-semibold text-blue-300 mb-3 flex items-center">
71
+ <i class="fas fa-laptop-code mr-2"></i> Select Platform
72
+ </h3>
73
+ <div class="flex space-x-2">
74
+ <button id="envatoBtn" class="flex-1 py-2 px-4 bg-blue-600 hover:bg-blue-700 rounded-lg flex items-center justify-center transition">
75
+ <i class="fab fa-envato mr-2"></i> Envato
76
+ </button>
77
+ <button id="cocadenyonBtn" class="flex-1 py-2 px-4 bg-purple-600 hover:bg-purple-700 rounded-lg flex items-center justify-center transition">
78
+ <i class="fas fa-code mr-2"></i> Cocadenyon
79
+ </button>
80
+ </div>
81
+ </div>
82
+
83
+ <!-- Code Type -->
84
+ <div>
85
+ <h3 class="text-lg font-semibold text-green-300 mb-3 flex items-center">
86
+ <i class="fas fa-key mr-2"></i> Code Type
87
+ </h3>
88
+ <div class="flex space-x-2">
89
+ <button id="premiumBtn" class="flex-1 py-2 px-4 bg-green-600 hover:bg-green-700 rounded-lg transition">
90
+ Premium
91
+ </button>
92
+ <button id="ultimateBtn" class="flex-1 py-2 px-4 bg-yellow-600 hover:bg-yellow-700 rounded-lg transition">
93
+ Ultimate
94
+ </button>
95
+ <button id="lifetimeBtn" class="flex-1 py-2 px-4 bg-red-600 hover:bg-red-700 rounded-lg transition">
96
+ Lifetime
97
+ </button>
98
+ </div>
99
+ </div>
100
+ </div>
101
+
102
+ <!-- Generation Area -->
103
+ <div class="mb-6">
104
+ <div class="flex justify-between items-center mb-2">
105
+ <h3 class="text-lg font-semibold text-blue-300 flex items-center">
106
+ <i class="fas fa-bolt mr-2"></i> Generator Status
107
+ </h3>
108
+ <span id="statusText" class="text-sm font-mono text-green-400 animate-pulse-slow">
109
+ Ready to generate
110
+ </span>
111
+ </div>
112
+
113
+ <div class="code-block p-4 rounded-lg mb-4">
114
+ <div id="codeDisplay" class="font-mono text-gray-300 overflow-x-auto">
115
+ <span class="text-gray-500">// Select platform and code type</span>
116
+ </div>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Generate Button -->
121
+ <div class="flex justify-center">
122
+ <button id="generateBtn" class="py-3 px-8 bg-gradient-to-r from-blue-500 to-purple-600 hover:from-blue-600 hover:to-purple-700 rounded-full font-bold text-lg shadow-lg hover:shadow-xl transition-all flex items-center">
123
+ <i class="fas fa-bolt mr-2"></i> Generate Access Code
124
+ </button>
125
+ </div>
126
+ </div>
127
+ </div>
128
+
129
+ <!-- Stats Section -->
130
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-8">
131
+ <div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg border border-gray-700">
132
+ <div class="flex items-center">
133
+ <div class="p-3 rounded-full bg-blue-900 bg-opacity-50 mr-4">
134
+ <i class="fas fa-check-circle text-blue-400 text-xl"></i>
135
+ </div>
136
+ <div>
137
+ <p class="text-gray-400 text-sm">Codes Generated</p>
138
+ <p class="text-2xl font-bold text-blue-300">1,248</p>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ <div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg border border-gray-700">
143
+ <div class="flex items-center">
144
+ <div class="p-3 rounded-full bg-green-900 bg-opacity-50 mr-4">
145
+ <i class="fas fa-shield-alt text-green-400 text-xl"></i>
146
+ </div>
147
+ <div>
148
+ <p class="text-gray-400 text-sm">Success Rate</p>
149
+ <p class="text-2xl font-bold text-green-300">98.7%</p>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ <div class="bg-gray-800 bg-opacity-50 p-4 rounded-lg border border-gray-700">
154
+ <div class="flex items-center">
155
+ <div class="p-3 rounded-full bg-purple-900 bg-opacity-50 mr-4">
156
+ <i class="fas fa-bolt text-purple-400 text-xl"></i>
157
+ </div>
158
+ <div>
159
+ <p class="text-gray-400 text-sm">Last Generated</p>
160
+ <p class="text-2xl font-bold text-purple-300">2 min ago</p>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Disclaimer -->
167
+ <div class="bg-yellow-900 bg-opacity-20 border border-yellow-800 rounded-lg p-4 text-sm text-yellow-200">
168
+ <div class="flex items-start">
169
+ <i class="fas fa-exclamation-triangle mt-1 mr-3"></i>
170
+ <div>
171
+ <strong class="font-semibold">Disclaimer:</strong> This is a fictional UI demonstration only. Generating unauthorized access codes for commercial platforms is illegal. This interface simulates what a code generator might look like for educational purposes in UI design. No actual codes are generated.
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <script>
178
+ // DOM Elements
179
+ const envatoBtn = document.getElementById('envatoBtn');
180
+ const cocadenyonBtn = document.getElementById('cocadenyonBtn');
181
+ const premiumBtn = document.getElementById('premiumBtn');
182
+ const ultimateBtn = document.getElementById('ultimateBtn');
183
+ const lifetimeBtn = document.getElementById('lifetimeBtn');
184
+ const generateBtn = document.getElementById('generateBtn');
185
+ const codeDisplay = document.getElementById('codeDisplay');
186
+ const statusText = document.getElementById('statusText');
187
+
188
+ // State
189
+ let selectedPlatform = null;
190
+ let selectedType = null;
191
+
192
+ // Platform selection
193
+ envatoBtn.addEventListener('click', () => {
194
+ selectedPlatform = 'envato';
195
+ updateUI();
196
+ });
197
+
198
+ cocadenyonBtn.addEventListener('click', () => {
199
+ selectedPlatform = 'cocadenyon';
200
+ updateUI();
201
+ });
202
+
203
+ // Type selection
204
+ premiumBtn.addEventListener('click', () => {
205
+ selectedType = 'premium';
206
+ updateUI();
207
+ });
208
+
209
+ ultimateBtn.addEventListener('click', () => {
210
+ selectedType = 'ultimate';
211
+ updateUI();
212
+ });
213
+
214
+ lifetimeBtn.addEventListener('click', () => {
215
+ selectedType = 'lifetime';
216
+ updateUI();
217
+ });
218
+
219
+ // Generate button
220
+ generateBtn.addEventListener('click', () => {
221
+ if (!selectedPlatform || !selectedType) {
222
+ statusText.textContent = "Please select platform and type";
223
+ statusText.className = "text-sm font-mono text-red-400";
224
+ return;
225
+ }
226
+
227
+ // Simulate generation process
228
+ statusText.textContent = "Generating secure code...";
229
+ statusText.className = "text-sm font-mono text-yellow-400 animate-pulse-slow";
230
+ generateBtn.disabled = true;
231
+
232
+ // Show loading state
233
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Initializing secure connection...</span>';
234
+
235
+ // Simulate steps
236
+ setTimeout(() => {
237
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Bypassing security protocols...</span>';
238
+ }, 800);
239
+
240
+ setTimeout(() => {
241
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Generating encryption keys...</span>';
242
+ }, 1600);
243
+
244
+ setTimeout(() => {
245
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Validating with remote server...</span>';
246
+ }, 2400);
247
+
248
+ setTimeout(() => {
249
+ // Generate a fake code
250
+ const code = generateFakeCode();
251
+ codeDisplay.innerHTML = `<span class="text-green-400">${code}</span>`;
252
+ statusText.textContent = "Code generated successfully!";
253
+ statusText.className = "text-sm font-mono text-green-400";
254
+ generateBtn.disabled = false;
255
+
256
+ // Copy to clipboard
257
+ navigator.clipboard.writeText(code).then(() => {
258
+ setTimeout(() => {
259
+ statusText.textContent = "Code copied to clipboard!";
260
+ }, 500);
261
+ });
262
+ }, 3500);
263
+ });
264
+
265
+ // Update UI based on selections
266
+ function updateUI() {
267
+ // Reset buttons
268
+ envatoBtn.className = "flex-1 py-2 px-4 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center transition";
269
+ cocadenyonBtn.className = "flex-1 py-2 px-4 bg-gray-700 hover:bg-gray-600 rounded-lg flex items-center justify-center transition";
270
+ premiumBtn.className = "flex-1 py-2 px-4 bg-gray-700 hover:bg-gray-600 rounded-lg transition";
271
+ ultimateBtn.className = "flex-1 py-2 px-4 bg-gray-700 hover:bg-gray-600 rounded-lg transition";
272
+ lifetimeBtn.className = "flex-1 py-2 px-4 bg-gray-700 hover:bg-gray-600 rounded-lg transition";
273
+
274
+ // Highlight selected platform
275
+ if (selectedPlatform === 'envato') {
276
+ envatoBtn.className = "flex-1 py-2 px-4 bg-blue-600 hover:bg-blue-700 rounded-lg flex items-center justify-center transition";
277
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Envato Elements selected</span>';
278
+ } else if (selectedPlatform === 'cocadenyon') {
279
+ cocadenyonBtn.className = "flex-1 py-2 px-4 bg-purple-600 hover:bg-purple-700 rounded-lg flex items-center justify-center transition";
280
+ codeDisplay.innerHTML = '<span class="text-gray-500">// Cocadenyon Market selected</span>';
281
+ }
282
+
283
+ // Highlight selected type
284
+ if (selectedType === 'premium') {
285
+ premiumBtn.className = "flex-1 py-2 px-4 bg-green-600 hover:bg-green-700 rounded-lg transition";
286
+ } else if (selectedType === 'ultimate') {
287
+ ultimateBtn.className = "flex-1 py-2 px-4 bg-yellow-600 hover:bg-yellow-700 rounded-lg transition";
288
+ } else if (selectedType === 'lifetime') {
289
+ lifetimeBtn.className = "flex-1 py-2 px-4 bg-red-600 hover:bg-red-700 rounded-lg transition";
290
+ }
291
+
292
+ // Update status
293
+ if (selectedPlatform && selectedType) {
294
+ statusText.textContent = "Ready to generate";
295
+ statusText.className = "text-sm font-mono text-green-400 animate-pulse-slow";
296
+ } else {
297
+ statusText.textContent = "Select options above";
298
+ statusText.className = "text-sm font-mono text-gray-400";
299
+ }
300
+ }
301
+
302
+ // Generate a fake code
303
+ function generateFakeCode() {
304
+ const chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
305
+ let code = '';
306
+
307
+ // Different formats based on platform and type
308
+ if (selectedPlatform === 'envato') {
309
+ if (selectedType === 'premium') {
310
+ // Envato premium format
311
+ for (let i = 0; i < 4; i++) {
312
+ for (let j = 0; j < 4; j++) {
313
+ code += chars.charAt(Math.floor(Math.random() * chars.length));
314
+ }
315
+ if (i < 3) code += '-';
316
+ }
317
+ } else if (selectedType === 'ultimate') {
318
+ // Envato ultimate format
319
+ code = 'ULT-' + Array.from({length: 12}, () =>
320
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('');
321
+ } else {
322
+ // Envato lifetime format
323
+ code = 'LIFE-' + Array.from({length: 8}, () =>
324
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('') +
325
+ '-' + Array.from({length: 4}, () =>
326
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('');
327
+ }
328
+ } else {
329
+ // Cocadenyon formats
330
+ if (selectedType === 'premium') {
331
+ code = 'CDN-' + Array.from({length: 9}, () =>
332
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('') +
333
+ '-' + Array.from({length: 4}, () =>
334
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('');
335
+ } else if (selectedType === 'ultimate') {
336
+ code = 'CDN-X-' + Array.from({length: 12}, () =>
337
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('');
338
+ } else {
339
+ code = 'CDN-LT-' + Array.from({length: 16}, () =>
340
+ chars.charAt(Math.floor(Math.random() * chars.length))).join('');
341
+ }
342
+ }
343
+
344
+ return code;
345
+ }
346
+ </script>
347
+ <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=docto41/code-generator" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
348
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ creer un puissant hacker code d'achat envato et cocadenyon