docto41 commited on
Commit
0c6dbc5
·
verified ·
1 Parent(s): a07fe74

Add 2 files

Browse files
Files changed (2) hide show
  1. index.html +287 -161
  2. prompts.txt +2 -1
index.html CHANGED
@@ -6,6 +6,7 @@
6
  <title>DOMAIBOT PRO - Enregistrement Automatisé de Domaines</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: {
@@ -33,17 +34,49 @@
33
  fontFamily: {
34
  sans: ['Inter', 'sans-serif'],
35
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  }
37
  }
38
  }
39
  </script>
40
  <style>
41
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
42
-
43
- body {
44
- font-family: 'Inter', sans-serif;
45
- }
46
-
47
  .gradient-bg {
48
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
49
  }
@@ -61,93 +94,122 @@
61
  }
62
 
63
  .domain-card:hover {
64
- transform: translateY(-8px);
65
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
66
  }
67
 
68
- .glow-effect {
69
- box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
- .glow-effect:hover {
73
- box-shadow: 0 0 25px rgba(14, 165, 233, 0.5);
74
  }
75
 
76
- .ai-pulse {
77
- animation: pulse 2s infinite;
78
  }
79
 
80
  @keyframes pulse {
81
- 0%, 100% { opacity: 1; }
82
- 50% { opacity: 0.7; }
 
83
  }
84
 
85
- .floating {
86
- animation: floating 6s ease-in-out infinite;
 
87
  }
88
 
89
- @keyframes floating {
90
- 0% { transform: translateY(0px); }
91
- 50% { transform: translateY(-15px); }
92
- 100% { transform: translateY(0px); }
 
 
 
 
 
 
 
 
 
 
 
93
  }
94
 
95
- .glass-effect {
96
- background: rgba(255, 255, 255, 0.08);
97
- backdrop-filter: blur(10px);
98
- -webkit-backdrop-filter: blur(10px);
99
- border: 1px solid rgba(255, 255, 255, 0.1);
100
  }
101
 
102
- .dashboard-grid {
103
- display: grid;
104
- grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
105
- gap: 1.5rem;
 
 
 
 
106
  }
107
  </style>
108
  </head>
109
- <body class="bg-gray-50 text-gray-800">
110
  <!-- Admin Access Only Banner -->
111
- <div class="bg-yellow-500 text-white text-center py-2 px-4 font-medium">
112
  <i class="fas fa-lock mr-2"></i> ACCÈS ADMINISTRATEUR UNIQUEMENT - Mode Super Admin Activé
113
  </div>
114
 
115
  <!-- Header -->
116
- <header class="gradient-bg text-white sticky top-0 z-50">
117
  <div class="container mx-auto px-4 py-4">
118
  <div class="flex justify-between items-center">
119
- <div class="flex items-center space-x-3">
120
- <div class="bg-white p-2 rounded-lg">
121
  <i class="fas fa-robot text-primary-600 text-2xl"></i>
122
  </div>
123
- <h1 class="text-2xl font-bold">DOMAIBOT PRO</h1>
124
  </div>
125
  <nav class="hidden md:flex space-x-8">
126
- <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1">
127
- <i class="fas fa-tachometer-alt text-sm"></i>
128
- <span>Tableau de bord</span>
129
  </a>
130
- <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1">
131
- <i class="fas fa-globe text-sm"></i>
132
- <span>Domaines</span>
133
  </a>
134
- <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1">
135
- <i class="fas fa-server text-sm"></i>
136
- <span>DNS</span>
137
  </a>
138
- <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1">
139
- <i class="fas fa-chart-line text-sm"></i>
140
- <span>Analytics</span>
141
  </a>
142
  </nav>
143
  <div class="flex items-center space-x-4">
144
- <div class="hidden md:flex items-center space-x-3 bg-white bg-opacity-20 px-4 py-2 rounded-lg">
145
- <div class="w-8 h-8 rounded-full bg-white flex items-center justify-center overflow-hidden">
146
  <i class="fas fa-user text-primary-600"></i>
147
  </div>
148
  <span class="font-medium">Admin</span>
149
  </div>
150
- <button class="md:hidden text-2xl">
151
  <i class="fas fa-bars"></i>
152
  </button>
153
  </div>
@@ -156,77 +218,77 @@
156
  </header>
157
 
158
  <!-- Admin Dashboard -->
159
- <div class="container mx-auto px-4 py-8">
160
  <!-- Quick Stats -->
161
  <div class="dashboard-grid mb-8">
162
  <!-- Total Domains -->
163
- <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary-500">
164
  <div class="flex justify-between items-start">
165
  <div>
166
  <p class="text-gray-500">Domaines enregistrés</p>
167
- <h3 class="text-3xl font-bold mt-2">1,248</h3>
168
  </div>
169
- <div class="bg-primary-100 p-3 rounded-lg">
170
  <i class="fas fa-globe text-primary-600 text-xl"></i>
171
  </div>
172
  </div>
173
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
174
  <span class="text-green-500 text-sm font-medium flex items-center">
175
- <i class="fas fa-arrow-up mr-1"></i> 12% ce mois
176
  </span>
177
  </div>
178
  </div>
179
 
180
  <!-- SSL Certificates -->
181
- <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-green-500">
182
  <div class="flex justify-between items-start">
183
  <div>
184
  <p class="text-gray-500">Certificats SSL</p>
185
  <h3 class="text-3xl font-bold mt-2">1,042</h3>
186
  </div>
187
- <div class="bg-green-100 p-3 rounded-lg">
188
  <i class="fas fa-lock text-green-600 text-xl"></i>
189
  </div>
190
  </div>
191
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
192
  <span class="text-green-500 text-sm font-medium flex items-center">
193
- <i class="fas fa-check-circle mr-1"></i> 100% Actifs
194
  </span>
195
  </div>
196
  </div>
197
 
198
  <!-- DNS Performance -->
199
- <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-blue-500">
200
  <div class="flex justify-between items-start">
201
  <div>
202
  <p class="text-gray-500">Performance DNS</p>
203
- <h3 class="text-3xl font-bold mt-2">4ms</h3>
204
  </div>
205
- <div class="bg-blue-100 p-3 rounded-lg">
206
  <i class="fas fa-bolt text-blue-600 text-xl"></i>
207
  </div>
208
  </div>
209
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
210
- <span classtext-green-500 text-sm font-medium flex items-center">
211
- <i class="fas fa-tachometer-alt mr-1"></i> Record mondial
212
  </span>
213
  </div>
214
  </div>
215
 
216
  <!-- Revenue -->
217
- <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-purple-500">
218
  <div class="flex justify-between items-start">
219
  <div>
220
  <p class="text-gray-500">Revenu ce mois</p>
221
  <h3 class="text-3xl font-bold mt-2">€24,850</h3>
222
  </div>
223
- <div class="bg-purple-100 p-3 rounded-lg">
224
  <i class="fas fa-euro-sign text-purple-600 text-xl"></i>
225
  </div>
226
  </div>
227
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
228
  <span class="text-green-500 text-sm font-medium flex items-center">
229
- <i class="fas fa-arrow-up mr-1"></i> 18% vs dernier mois
230
  </span>
231
  </div>
232
  </div>
@@ -237,12 +299,12 @@
237
  <!-- Left Column -->
238
  <div class="lg:w-2/3">
239
  <!-- Domain Registration Panel -->
240
- <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
241
- <div class="gradient-bg text-white px-6 py-4 flex justify-between items-center">
242
  <h2 class="text-xl font-bold">
243
- <i class="fas fa-bolt mr-2"></i> Enregistrement Instantané de Domaine
244
  </h2>
245
- <span class="bg-white bg-opacity-20 px-3 py-1 rounded-full text-xs">
246
  <i class="fas fa-infinity mr-1"></i> Automatisé 24/7
247
  </span>
248
  </div>
@@ -250,40 +312,41 @@
250
  <div class="mb-6">
251
  <div class="relative max-w-2xl mx-auto">
252
  <div class="absolute inset-y-0 left-0 pl-5 flex items-center pointer-events-none">
253
- <i class="fas fa-globe text-gray-400"></i>
254
  </div>
255
- <input type="text" placeholder="Entrez votre nom de domaine (ex: votredomaine.com)" class="w-full pl-12 pr-32 py-4 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-primary-500 shadow-lg">
256
- <button class="absolute right-2 top-2 bg-primary-600 text-white px-6 py-2 rounded-full hover:bg-primary-700 transition flex items-center">
 
257
  <i class="fas fa-magic mr-2"></i> Enregistrer
258
  </button>
259
  </div>
260
  <div class="mt-4 text-center text-sm text-gray-600">
261
- <i class="fas fa-info-circle mr-1"></i> Enregistrement instantané avec propagation DNS mondiale en 0.3s
262
  </div>
263
  </div>
264
 
265
  <div class="grid md:grid-cols-3 gap-4">
266
- <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
267
  <div class="flex items-center mb-2">
268
- <div class="bg-green-100 p-2 rounded-full mr-3">
269
  <i class="fas fa-check text-green-600"></i>
270
  </div>
271
  <h4 class="font-medium">SSL Gratuit</h4>
272
  </div>
273
  <p class="text-sm text-gray-600">Certificat SSL délivré automatiquement avec Let's Encrypt</p>
274
  </div>
275
- <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
276
  <div class="flex items-center mb-2">
277
- <div class="bg-blue-100 p-2 rounded-full mr-3">
278
  <i class="fas fa-bolt text-blue-600"></i>
279
  </div>
280
  <h4 class="font-medium">DNS Ultra-Rapide</h4>
281
  </div>
282
  <p class="text-sm text-gray-600">Réseau Anycast global avec résolution en 4ms</p>
283
  </div>
284
- <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
285
  <div class="flex items-center mb-2">
286
- <div class="bg-purple-100 p-2 rounded-full mr-3">
287
  <i class="fas fa-robot text-purple-600"></i>
288
  </div>
289
  <h4 class="font-medium">SEO Automatisé</h4>
@@ -295,72 +358,72 @@
295
  </div>
296
 
297
  <!-- Recent Domains -->
298
- <div class="bg-white rounded-xl shadow-md overflow-hidden">
299
  <div class="border-b border-gray-200 px-6 py-4 flex justify-between items-center">
300
  <h2 class="text-xl font-bold">
301
- <i class="fas fa-clock mr-2"></i> Derniers Domaines Enregistrés
302
  </h2>
303
- <a href="#" class="text-primary-600 text-sm font-medium">Voir tout</a>
304
  </div>
305
  <div class="divide-y divide-gray-200">
306
  <!-- Domain 1 -->
307
- <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between">
308
  <div class="flex items-center space-x-4">
309
- <div class="bg-primary-100 p-3 rounded-lg">
310
  <i class="fas fa-globe text-primary-600"></i>
311
  </div>
312
  <div>
313
- <h4 class="font-medium">techinnov.io</h4>
314
  <p class="text-sm text-gray-600">Enregistré il y a 2 minutes</p>
315
  </div>
316
  </div>
317
  <div class="flex items-center space-x-4">
318
- <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-medium">
319
  <i class="fas fa-check mr-1"></i> Actif
320
  </span>
321
- <button class="text-primary-600 hover:text-primary-800">
322
  <i class="fas fa-ellipsis-v"></i>
323
  </button>
324
  </div>
325
  </div>
326
 
327
  <!-- Domain 2 -->
328
- <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between">
329
  <div class="flex items-center space-x-4">
330
- <div class="bg-primary-100 p-3 rounded-lg">
331
  <i class="fas fa-globe text-primary-600"></i>
332
  </div>
333
  <div>
334
- <h4 class="font-medium">digitalfuture.ai</h4>
335
  <p class="text-sm text-gray-600">Enregistré il y a 15 minutes</p>
336
  </div>
337
  </div>
338
  <div class="flex items-center space-x-4">
339
- <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-xs font-medium">
340
  <i class="fas fa-sync-alt mr-1"></i> Propagation
341
  </span>
342
- <button class="text-primary-600 hover:text-primary-800">
343
  <i class="fas fa-ellipsis-v"></i>
344
  </button>
345
  </div>
346
  </div>
347
 
348
  <!-- Domain 3 -->
349
- <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between">
350
  <div class="flex items-center space-x-4">
351
- <div class="bg-primary-100 p-3 rounded-lg">
352
  <i class="fas fa-globe text-primary-600"></i>
353
  </div>
354
  <div>
355
- <h4 class="font-medium">smartapp.dev</h4>
356
  <p class="text-sm text-gray-600">Enregistré il y a 1 heure</p>
357
  </div>
358
  </div>
359
  <div class="flex items-center space-x-4">
360
- <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-medium">
361
  <i class="fas fa-lock mr-1"></i> SSL Actif
362
  </span>
363
- <button class="text-primary-600 hover:text-primary-800">
364
  <i class="fas fa-ellipsis-v"></i>
365
  </button>
366
  </div>
@@ -372,33 +435,33 @@
372
  <!-- Right Column -->
373
  <div class="lg:w-1/3">
374
  <!-- Admin Access Panel -->
375
- <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
376
- <div class="gradient-bg text-white px-6 py-4">
377
  <h2 class="text-xl font-bold">
378
- <i class="fas fa-user-shield mr-2"></i> Accès Administrateur
379
  </h2>
380
  </div>
381
  <div class="p-6">
382
  <div class="mb-6">
383
  <h4 class="font-medium mb-3">Comptes Admin Actifs</h4>
384
  <div class="space-y-3">
385
- <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
386
  <div class="flex items-center space-x-3">
387
- <div class="bg-primary-100 p-2 rounded-full">
388
  <i class="fas fa-user text-primary-600"></i>
389
  </div>
390
  <span>vgp.bavol@gmail.com</span>
391
  </div>
392
- <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Actif</span>
393
  </div>
394
- <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg">
395
  <div class="flex items-center space-x-3">
396
- <div class="bg-primary-100 p-2 rounded-full">
397
  <i class="fas fa-user text-primary-600"></i>
398
  </div>
399
  <span>doctorblog.fr@gmail.com</span>
400
  </div>
401
- <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Actif</span>
402
  </div>
403
  </div>
404
  </div>
@@ -406,43 +469,43 @@
406
  <div class="mb-6">
407
  <h4 class="font-medium mb-3">Options d'Accès</h4>
408
  <div class="space-y-2">
409
- <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition">
410
  <span>Forcer la vérification 2FA</span>
411
- <i class="fas fa-chevron-right text-gray-400"></i>
412
  </button>
413
- <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition">
414
  <span>Journal des accès</span>
415
- <i class="fas fa-chevron-right text-gray-400"></i>
416
  </button>
417
- <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition">
418
  <span>Paramètres de sécurité</span>
419
- <i class="fas fa-chevron-right text-gray-400"></i>
420
  </button>
421
  </div>
422
  </div>
423
 
424
- <button class="w-full bg-red-100 hover:bg-red-200 text-red-800 py-3 rounded-lg font-medium flex items-center justify-center transition">
425
  <i class="fas fa-sign-out-alt mr-2"></i> Déconnexion de tous les appareils
426
  </button>
427
  </div>
428
  </div>
429
 
430
  <!-- Payment & Cart -->
431
- <div class="bg-white rounded-xl shadow-md overflow-hidden">
432
  <div class="border-b border-gray-200 px-6 py-4">
433
  <h2 class="text-xl font-bold">
434
- <i class="fas fa-shopping-cart mr-2"></i> Paiements & Panier
435
  </h2>
436
  </div>
437
  <div class="p-6">
438
  <div class="mb-6">
439
  <h4 class="font-medium mb-3">Méthodes de Paiement</h4>
440
  <div class="grid grid-cols-2 gap-3">
441
- <button class="bg-blue-100 hover:bg-blue-200 text-blue-800 py-3 rounded-lg font-medium flex items-center justify-center transition">
442
- <i class="fab fa-cc-stripe mr-2 text-lg"></i> Stripe
443
  </button>
444
- <button class="bg-yellow-100 hover:bg-yellow-200 text-yellow-800 py-3 rounded-lg font-medium flex items-center justify-center transition">
445
- <i class="fab fa-cc-paypal mr-2 text-lg"></i> PayPal
446
  </button>
447
  </div>
448
  </div>
@@ -450,26 +513,26 @@
450
  <div class="mb-6">
451
  <h4 class="font-medium mb-3">Panier Actuel</h4>
452
  <div class="bg-gray-50 p-4 rounded-lg">
453
- <div class="flex justify-between items-center mb-2">
454
  <span class="text-gray-600">techinnov.io (1 an)</span>
455
  <span class="font-medium">€12.99</span>
456
  </div>
457
- <div class="flex justify-between items-center mb-2">
458
  <span class="text-gray-600">SSL Premium</span>
459
  <span class="font-medium">€0.00</span>
460
  </div>
461
- <div class="flex justify-between items-center mb-2">
462
  <span class="text-gray-600">DNS Ultra-Rapide</span>
463
  <span class="font-medium">€0.00</span>
464
  </div>
465
  <div class="pt-3 mt-3 border-t border-gray-200 flex justify-between items-center">
466
  <span class="font-medium">Total</span>
467
- <span class="text-xl font-bold">€12.99</span>
468
  </div>
469
  </div>
470
  </div>
471
 
472
- <button class="w-full bg-primary-600 hover:bg-primary-700 text-white py-3 rounded-lg font-medium flex items-center justify-center transition">
473
  <i class="fas fa-credit-card mr-2"></i> Procéder au paiement
474
  </button>
475
  </div>
@@ -483,21 +546,21 @@
483
  <div class="container mx-auto px-4">
484
  <div class="grid md:grid-cols-4 gap-8">
485
  <div class="md:col-span-2">
486
- <div class="flex items-center space-x-3 mb-4">
487
- <div class="bg-white p-2 rounded-lg">
488
  <i class="fas fa-robot text-primary-600 text-2xl"></i>
489
  </div>
490
- <h3 class="text-xl font-bold">DOMAIBOT PRO</h3>
491
  </div>
492
  <p class="text-gray-400 mb-6">Système automatisé d'enregistrement de domaine avec propagation DNS mondiale instantanée, SSL gratuit et optimisation SEO automatique.</p>
493
  <div class="flex space-x-4">
494
- <a href="#" class="text-gray-400 hover:text-white transition text-xl">
495
  <i class="fab fa-twitter"></i>
496
  </a>
497
- <a href="#" class="text-gray-400 hover:text-white transition text-xl">
498
  <i class="fab fa-linkedin"></i>
499
  </a>
500
- <a href="#" class="text-gray-400 hover:text-white transition text-xl">
501
  <i class="fab fa-github"></i>
502
  </a>
503
  </div>
@@ -506,17 +569,17 @@
506
  <div>
507
  <h4 class="font-bold text-lg mb-4">Services</h4>
508
  <ul class="space-y-3">
509
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
510
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Enregistrement de domaine
511
  </a></li>
512
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
513
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Certificats SSL
514
  </a></li>
515
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
516
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Hébergement DNS
517
  </a></li>
518
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
519
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Optimisation SEO
520
  </a></li>
521
  </ul>
522
  </div>
@@ -524,17 +587,17 @@
524
  <div>
525
  <h4 class="font-bold text-lg mb-4">Support</h4>
526
  <ul class="space-y-3">
527
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
528
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Centre d'aide
529
  </a></li>
530
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
531
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Documentation API
532
  </a></li>
533
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
534
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Statut des services
535
  </a></li>
536
- <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center">
537
- <i class="fas fa-chevron-right text-xs mr-2 text-primary-500"></i> Contact
538
  </a></li>
539
  </ul>
540
  </div>
@@ -545,9 +608,9 @@
545
  © 2023 DOMAIBOT PRO. Tous droits réservés.
546
  </p>
547
  <div class="flex space-x-6">
548
- <a href="#" class="text-gray-500 hover:text-white transition text-sm">Confidentialité</a>
549
- <a href="#" class="text-gray-500 hover:text-white transition text-sm">Conditions</a>
550
- <a href="#" class="text-gray-500 hover:text-white transition text-sm">RGPD</a>
551
  </div>
552
  </div>
553
  </div>
@@ -580,12 +643,20 @@
580
 
581
  registerButton.addEventListener('click', function() {
582
  if(domainInput.value.trim() !== '') {
583
- alert("Domaine enregistré avec succès ! Propagation DNS mondiale en cours...\n\nSSL délivré automatiquement\nDNS Anycast configuré\nSearch Console & Analytics connectés");
584
- domainInput.value = '';
585
 
586
- // Simulate adding to cart
587
- const cartTotal = document.querySelector('.text-xl.font-bold');
588
- cartTotal.textContent = '€0.00';
 
 
 
 
 
 
 
 
589
  }
590
  });
591
 
@@ -594,17 +665,72 @@
594
  const paypalButton = document.querySelector('.fa-cc-paypal').parentNode;
595
 
596
  stripeButton.addEventListener('click', function() {
597
- alert("Redirection vers Stripe pour le paiement sécurisé...");
 
 
 
 
598
  });
599
 
600
  paypalButton.addEventListener('click', function() {
601
- alert("Redirection vers PayPal pour le paiement sécurisé...");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
  });
603
 
604
  // Check admin access
605
- console.log("Accès admin confirmé pour:");
606
- console.log("vgp.bavol@gmail.com : Admin270574@");
607
- console.log("doctorblog.fr@gmail.com : Admin270574@");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
608
  });
609
  </script>
610
  <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/domaibot-pro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
 
6
  <title>DOMAIBOT PRO - Enregistrement Automatisé de Domaines</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
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
10
  <script>
11
  tailwind.config = {
12
  theme: {
 
34
  fontFamily: {
35
  sans: ['Inter', 'sans-serif'],
36
  },
37
+ animation: {
38
+ 'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
39
+ 'bounce-slow': 'bounce 2s infinite',
40
+ 'spin-slow': 'spin 6s linear infinite',
41
+ 'float': 'float 6s ease-in-out infinite',
42
+ 'wave': 'wave 1.5s linear infinite',
43
+ 'fade-in': 'fadeIn 0.5s ease-in',
44
+ 'slide-up': 'slideUp 0.5s ease-out',
45
+ 'glow': 'glow 2s ease-in-out infinite alternate',
46
+ },
47
+ keyframes: {
48
+ float: {
49
+ '0%, 100%': { transform: 'translateY(0px)' },
50
+ '50%': { transform: 'translateY(-15px)' },
51
+ },
52
+ wave: {
53
+ '0%': { transform: 'rotate(0deg)' },
54
+ '10%': { transform: 'rotate(14deg)' },
55
+ '20%': { transform: 'rotate(-8deg)' },
56
+ '30%': { transform: 'rotate(14deg)' },
57
+ '40%': { transform: 'rotate(-4deg)' },
58
+ '50%': { transform: 'rotate(10deg)' },
59
+ '60%': { transform: 'rotate(0deg)' },
60
+ '100%': { transform: 'rotate(0deg)' },
61
+ },
62
+ fadeIn: {
63
+ '0%': { opacity: '0' },
64
+ '100%': { opacity: '1' },
65
+ },
66
+ slideUp: {
67
+ '0%': { transform: 'translateY(20px)', opacity: '0' },
68
+ '100%': { transform: 'translateY(0)', opacity: '1' },
69
+ },
70
+ glow: {
71
+ '0%': { boxShadow: '0 0 5px rgba(14, 165, 233, 0.5)' },
72
+ '100%': { boxShadow: '0 0 20px rgba(14, 165, 233, 0.8)' },
73
+ }
74
+ }
75
  }
76
  }
77
  }
78
  </script>
79
  <style>
 
 
 
 
 
 
80
  .gradient-bg {
81
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
82
  }
 
94
  }
95
 
96
  .domain-card:hover {
97
+ transform: translateY(-8px) scale(1.02);
98
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
99
  }
100
 
101
+ .glass-effect {
102
+ background: rgba(255, 255, 255, 0.08);
103
+ backdrop-filter: blur(10px);
104
+ -webkit-backdrop-filter: blur(10px);
105
+ border: 1px solid rgba(255, 255, 255, 0.1);
106
+ }
107
+
108
+ .dashboard-grid {
109
+ display: grid;
110
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
111
+ gap: 1.5rem;
112
+ }
113
+
114
+ .hover-scale {
115
+ transition: transform 0.3s ease;
116
  }
117
 
118
+ .hover-scale:hover {
119
+ transform: scale(1.05);
120
  }
121
 
122
+ .pulse-once {
123
+ animation: pulse 0.5s ease;
124
  }
125
 
126
  @keyframes pulse {
127
+ 0% { transform: scale(1); }
128
+ 50% { transform: scale(1.05); }
129
+ 100% { transform: scale(1); }
130
  }
131
 
132
+ .ripple {
133
+ position: relative;
134
+ overflow: hidden;
135
  }
136
 
137
+ .ripple:after {
138
+ content: "";
139
+ display: block;
140
+ position: absolute;
141
+ width: 100%;
142
+ height: 100%;
143
+ top: 0;
144
+ left: 0;
145
+ pointer-events: none;
146
+ background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
147
+ background-repeat: no-repeat;
148
+ background-position: 50%;
149
+ transform: scale(10, 10);
150
+ opacity: 0;
151
+ transition: transform .5s, opacity 1s;
152
  }
153
 
154
+ .ripple:active:after {
155
+ transform: scale(0, 0);
156
+ opacity: .3;
157
+ transition: 0s;
 
158
  }
159
 
160
+ .rotate-3d:hover {
161
+ transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
162
+ transition: transform 0.5s ease;
163
+ }
164
+
165
+ .text-wave {
166
+ display: inline-block;
167
+ animation: wave 2s ease infinite;
168
  }
169
  </style>
170
  </head>
171
+ <body class="bg-gray-50 text-gray-800 font-sans">
172
  <!-- Admin Access Only Banner -->
173
+ <div class="bg-yellow-500 text-white text-center py-2 px-4 font-medium animate-pulse">
174
  <i class="fas fa-lock mr-2"></i> ACCÈS ADMINISTRATEUR UNIQUEMENT - Mode Super Admin Activé
175
  </div>
176
 
177
  <!-- Header -->
178
+ <header class="gradient-bg text-white sticky top-0 z-50 shadow-lg">
179
  <div class="container mx-auto px-4 py-4">
180
  <div class="flex justify-between items-center">
181
+ <div class="flex items-center space-x-3 hover-scale">
182
+ <div class="bg-white p-2 rounded-lg animate-spin-slow">
183
  <i class="fas fa-robot text-primary-600 text-2xl"></i>
184
  </div>
185
+ <h1 class="text-2xl font-bold">DOMAIBOT <span class="gradient-text">PRO</span></h1>
186
  </div>
187
  <nav class="hidden md:flex space-x-8">
188
+ <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1 group">
189
+ <i class="fas fa-tachometer-alt text-sm group-hover:animate-bounce"></i>
190
+ <span class="group-hover:font-medium">Tableau de bord</span>
191
  </a>
192
+ <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1 group">
193
+ <i class="fas fa-globe text-sm group-hover:animate-bounce"></i>
194
+ <span class="group-hover:font-medium">Domaines</span>
195
  </a>
196
+ <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1 group">
197
+ <i class="fas fa-server text-sm group-hover:animate-bounce"></i>
198
+ <span class="group-hover:font-medium">DNS</span>
199
  </a>
200
+ <a href="#" class="hover:text-primary-200 transition flex items-center space-x-1 group">
201
+ <i class="fas fa-chart-line text-sm group-hover:animate-bounce"></i>
202
+ <span class="group-hover:font-medium">Analytics</span>
203
  </a>
204
  </nav>
205
  <div class="flex items-center space-x-4">
206
+ <div class="hidden md:flex items-center space-x-3 bg-white bg-opacity-20 px-4 py-2 rounded-lg hover-scale">
207
+ <div class="w-8 h-8 rounded-full bg-white flex items-center justify-center overflow-hidden animate-float">
208
  <i class="fas fa-user text-primary-600"></i>
209
  </div>
210
  <span class="font-medium">Admin</span>
211
  </div>
212
+ <button class="md:hidden text-2xl hover:text-primary-200 transition">
213
  <i class="fas fa-bars"></i>
214
  </button>
215
  </div>
 
218
  </header>
219
 
220
  <!-- Admin Dashboard -->
221
+ <div class="container mx-auto px-4 py-8 animate-fade-in">
222
  <!-- Quick Stats -->
223
  <div class="dashboard-grid mb-8">
224
  <!-- Total Domains -->
225
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-primary-500 domain-card hover:animate-pulse">
226
  <div class="flex justify-between items-start">
227
  <div>
228
  <p class="text-gray-500">Domaines enregistrés</p>
229
+ <h3 class="text-3xl font-bold mt-2 animate-pulse-slow">1,248</h3>
230
  </div>
231
+ <div class="bg-primary-100 p-3 rounded-lg animate-bounce-slow">
232
  <i class="fas fa-globe text-primary-600 text-xl"></i>
233
  </div>
234
  </div>
235
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
236
  <span class="text-green-500 text-sm font-medium flex items-center">
237
+ <i class="fas fa-arrow-up mr-1 animate-pulse"></i> 12% ce mois
238
  </span>
239
  </div>
240
  </div>
241
 
242
  <!-- SSL Certificates -->
243
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-green-500 domain-card">
244
  <div class="flex justify-between items-start">
245
  <div>
246
  <p class="text-gray-500">Certificats SSL</p>
247
  <h3 class="text-3xl font-bold mt-2">1,042</h3>
248
  </div>
249
+ <div class="bg-green-100 p-3 rounded-lg animate-spin-slow">
250
  <i class="fas fa-lock text-green-600 text-xl"></i>
251
  </div>
252
  </div>
253
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
254
  <span class="text-green-500 text-sm font-medium flex items-center">
255
+ <i class="fas fa-check-circle mr-1 animate-pulse"></i> 100% Actifs
256
  </span>
257
  </div>
258
  </div>
259
 
260
  <!-- DNS Performance -->
261
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-blue-500 domain-card">
262
  <div class="flex justify-between items-start">
263
  <div>
264
  <p class="text-gray-500">Performance DNS</p>
265
+ <h3 class="text-3xl font-bold mt-2 animate-pulse">4ms</h3>
266
  </div>
267
+ <div class="bg-blue-100 p-3 rounded-lg animate-pulse-slow">
268
  <i class="fas fa-bolt text-blue-600 text-xl"></i>
269
  </div>
270
  </div>
271
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
272
+ <span class="text-green-500 text-sm font-medium flex items-center">
273
+ <i class="fas fa-tachometer-alt mr-1 animate-spin"></i> Record mondial
274
  </span>
275
  </div>
276
  </div>
277
 
278
  <!-- Revenue -->
279
+ <div class="bg-white p-6 rounded-xl shadow-md border-l-4 border-purple-500 domain-card">
280
  <div class="flex justify-between items-start">
281
  <div>
282
  <p class="text-gray-500">Revenu ce mois</p>
283
  <h3 class="text-3xl font-bold mt-2">€24,850</h3>
284
  </div>
285
+ <div class="bg-purple-100 p-3 rounded-lg animate-float">
286
  <i class="fas fa-euro-sign text-purple-600 text-xl"></i>
287
  </div>
288
  </div>
289
  <div class="mt-4 pt-4 border-t border-gray-200 flex items-center">
290
  <span class="text-green-500 text-sm font-medium flex items-center">
291
+ <i class="fas fa-arrow-up mr-1 animate-bounce"></i> 18% vs dernier mois
292
  </span>
293
  </div>
294
  </div>
 
299
  <!-- Left Column -->
300
  <div class="lg:w-2/3">
301
  <!-- Domain Registration Panel -->
302
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 animate-slide-up">
303
+ <div class="gradient-bg text-white px-6 py-4 flex justify-between items-center animate-pulse-slow">
304
  <h2 class="text-xl font-bold">
305
+ <i class="fas fa-bolt mr-2 animate-glow"></i> Enregistrement Instantané de Domaine
306
  </h2>
307
+ <span class="bg-white bg-opacity-20 px-3 py-1 rounded-full text-xs animate-pulse">
308
  <i class="fas fa-infinity mr-1"></i> Automatisé 24/7
309
  </span>
310
  </div>
 
312
  <div class="mb-6">
313
  <div class="relative max-w-2xl mx-auto">
314
  <div class="absolute inset-y-0 left-0 pl-5 flex items-center pointer-events-none">
315
+ <i class="fas fa-globe text-gray-400 animate-spin-slow"></i>
316
  </div>
317
+ <input type="text" placeholder="Entrez votre nom de domaine (ex: votredomaine.com)"
318
+ class="w-full pl-12 pr-32 py-4 rounded-full text-gray-800 focus:outline-none focus:ring-2 focus:ring-primary-500 shadow-lg hover:shadow-xl transition">
319
+ <button class="absolute right-2 top-2 bg-primary-600 text-white px-6 py-2 rounded-full hover:bg-primary-700 transition flex items-center ripple animate-glow">
320
  <i class="fas fa-magic mr-2"></i> Enregistrer
321
  </button>
322
  </div>
323
  <div class="mt-4 text-center text-sm text-gray-600">
324
+ <i class="fas fa-info-circle mr-1 animate-pulse"></i> Enregistrement instantané avec propagation DNS mondiale en 0.3s
325
  </div>
326
  </div>
327
 
328
  <div class="grid md:grid-cols-3 gap-4">
329
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200 hover-scale rotate-3d">
330
  <div class="flex items-center mb-2">
331
+ <div class="bg-green-100 p-2 rounded-full mr-3 animate-pulse-slow">
332
  <i class="fas fa-check text-green-600"></i>
333
  </div>
334
  <h4 class="font-medium">SSL Gratuit</h4>
335
  </div>
336
  <p class="text-sm text-gray-600">Certificat SSL délivré automatiquement avec Let's Encrypt</p>
337
  </div>
338
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200 hover-scale rotate-3d">
339
  <div class="flex items-center mb-2">
340
+ <div class="bg-blue-100 p-2 rounded-full mr-3 animate-spin-slow">
341
  <i class="fas fa-bolt text-blue-600"></i>
342
  </div>
343
  <h4 class="font-medium">DNS Ultra-Rapide</h4>
344
  </div>
345
  <p class="text-sm text-gray-600">Réseau Anycast global avec résolution en 4ms</p>
346
  </div>
347
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200 hover-scale rotate-3d">
348
  <div class="flex items-center mb-2">
349
+ <div class="bg-purple-100 p-2 rounded-full mr-3 animate-float">
350
  <i class="fas fa-robot text-purple-600"></i>
351
  </div>
352
  <h4 class="font-medium">SEO Automatisé</h4>
 
358
  </div>
359
 
360
  <!-- Recent Domains -->
361
+ <div class="bg-white rounded-xl shadow-md overflow-hidden animate-slide-up">
362
  <div class="border-b border-gray-200 px-6 py-4 flex justify-between items-center">
363
  <h2 class="text-xl font-bold">
364
+ <i class="fas fa-clock mr-2 animate-spin-slow"></i> Derniers Domaines Enregistrés
365
  </h2>
366
+ <a href="#" class="text-primary-600 text-sm font-medium hover:underline">Voir tout</a>
367
  </div>
368
  <div class="divide-y divide-gray-200">
369
  <!-- Domain 1 -->
370
+ <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between group">
371
  <div class="flex items-center space-x-4">
372
+ <div class="bg-primary-100 p-3 rounded-lg group-hover:animate-pulse">
373
  <i class="fas fa-globe text-primary-600"></i>
374
  </div>
375
  <div>
376
+ <h4 class="font-medium group-hover:text-primary-600">techinnov.io</h4>
377
  <p class="text-sm text-gray-600">Enregistré il y a 2 minutes</p>
378
  </div>
379
  </div>
380
  <div class="flex items-center space-x-4">
381
+ <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-medium animate-pulse-slow">
382
  <i class="fas fa-check mr-1"></i> Actif
383
  </span>
384
+ <button class="text-primary-600 hover:text-primary-800 hover:animate-spin">
385
  <i class="fas fa-ellipsis-v"></i>
386
  </button>
387
  </div>
388
  </div>
389
 
390
  <!-- Domain 2 -->
391
+ <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between group">
392
  <div class="flex items-center space-x-4">
393
+ <div class="bg-primary-100 p-3 rounded-lg group-hover:animate-pulse">
394
  <i class="fas fa-globe text-primary-600"></i>
395
  </div>
396
  <div>
397
+ <h4 class="font-medium group-hover:text-primary-600">digitalfuture.ai</h4>
398
  <p class="text-sm text-gray-600">Enregistré il y a 15 minutes</p>
399
  </div>
400
  </div>
401
  <div class="flex items-center space-x-4">
402
+ <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-xs font-medium animate-pulse">
403
  <i class="fas fa-sync-alt mr-1"></i> Propagation
404
  </span>
405
+ <button class="text-primary-600 hover:text-primary-800 hover:animate-spin">
406
  <i class="fas fa-ellipsis-v"></i>
407
  </button>
408
  </div>
409
  </div>
410
 
411
  <!-- Domain 3 -->
412
+ <div class="p-4 hover:bg-gray-50 transition flex items-center justify-between group">
413
  <div class="flex items-center space-x-4">
414
+ <div class="bg-primary-100 p-3 rounded-lg group-hover:animate-pulse">
415
  <i class="fas fa-globe text-primary-600"></i>
416
  </div>
417
  <div>
418
+ <h4 class="font-medium group-hover:text-primary-600">smartapp.dev</h4>
419
  <p class="text-sm text-gray-600">Enregistré il y a 1 heure</p>
420
  </div>
421
  </div>
422
  <div class="flex items-center space-x-4">
423
+ <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-xs font-medium animate-pulse-slow">
424
  <i class="fas fa-lock mr-1"></i> SSL Actif
425
  </span>
426
+ <button class="text-primary-600 hover:text-primary-800 hover:animate-spin">
427
  <i class="fas fa-ellipsis-v"></i>
428
  </button>
429
  </div>
 
435
  <!-- Right Column -->
436
  <div class="lg:w-1/3">
437
  <!-- Admin Access Panel -->
438
+ <div class="bg-white rounded-xl shadow-md overflow-hidden mb-8 animate-slide-up">
439
+ <div class="gradient-bg text-white px-6 py-4 animate-pulse-slow">
440
  <h2 class="text-xl font-bold">
441
+ <i class="fas fa-user-shield mr-2 animate-bounce"></i> Accès Administrateur
442
  </h2>
443
  </div>
444
  <div class="p-6">
445
  <div class="mb-6">
446
  <h4 class="font-medium mb-3">Comptes Admin Actifs</h4>
447
  <div class="space-y-3">
448
+ <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg hover-scale">
449
  <div class="flex items-center space-x-3">
450
+ <div class="bg-primary-100 p-2 rounded-full animate-spin-slow">
451
  <i class="fas fa-user text-primary-600"></i>
452
  </div>
453
  <span>vgp.bavol@gmail.com</span>
454
  </div>
455
+ <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs animate-pulse">Actif</span>
456
  </div>
457
+ <div class="flex items-center justify-between p-3 bg-gray-50 rounded-lg hover-scale">
458
  <div class="flex items-center space-x-3">
459
+ <div class="bg-primary-100 p-2 rounded-full animate-spin-slow">
460
  <i class="fas fa-user text-primary-600"></i>
461
  </div>
462
  <span>doctorblog.fr@gmail.com</span>
463
  </div>
464
+ <span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs animate-pulse">Actif</span>
465
  </div>
466
  </div>
467
  </div>
 
469
  <div class="mb-6">
470
  <h4 class="font-medium mb-3">Options d'Accès</h4>
471
  <div class="space-y-2">
472
+ <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition hover-scale ripple">
473
  <span>Forcer la vérification 2FA</span>
474
+ <i class="fas fa-chevron-right text-gray-400 group-hover:translate-x-1 transition"></i>
475
  </button>
476
+ <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition hover-scale ripple">
477
  <span>Journal des accès</span>
478
+ <i class="fas fa-chevron-right text-gray-400 group-hover:translate-x-1 transition"></i>
479
  </button>
480
+ <button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 py-2 px-4 rounded-lg text-left flex items-center justify-between transition hover-scale ripple">
481
  <span>Paramètres de sécurité</span>
482
+ <i class="fas fa-chevron-right text-gray-400 group-hover:translate-x-1 transition"></i>
483
  </button>
484
  </div>
485
  </div>
486
 
487
+ <button class="w-full bg-red-100 hover:bg-red-200 text-red-800 py-3 rounded-lg font-medium flex items-center justify-center transition hover-scale ripple animate-pulse-slow">
488
  <i class="fas fa-sign-out-alt mr-2"></i> Déconnexion de tous les appareils
489
  </button>
490
  </div>
491
  </div>
492
 
493
  <!-- Payment & Cart -->
494
+ <div class="bg-white rounded-xl shadow-md overflow-hidden animate-slide-up">
495
  <div class="border-b border-gray-200 px-6 py-4">
496
  <h2 class="text-xl font-bold">
497
+ <i class="fas fa-shopping-cart mr-2 animate-wave"></i> Paiements & Panier
498
  </h2>
499
  </div>
500
  <div class="p-6">
501
  <div class="mb-6">
502
  <h4 class="font-medium mb-3">Méthodes de Paiement</h4>
503
  <div class="grid grid-cols-2 gap-3">
504
+ <button class="bg-blue-100 hover:bg-blue-200 text-blue-800 py-3 rounded-lg font-medium flex items-center justify-center transition hover-scale ripple">
505
+ <i class="fab fa-cc-stripe mr-2 text-lg animate-bounce-slow"></i> Stripe
506
  </button>
507
+ <button class="bg-yellow-100 hover:bg-yellow-200 text-yellow-800 py-3 rounded-lg font-medium flex items-center justify-center transition hover-scale ripple">
508
+ <i class="fab fa-cc-paypal mr-2 text-lg animate-wave"></i> PayPal
509
  </button>
510
  </div>
511
  </div>
 
513
  <div class="mb-6">
514
  <h4 class="font-medium mb-3">Panier Actuel</h4>
515
  <div class="bg-gray-50 p-4 rounded-lg">
516
+ <div class="flex justify-between items-center mb-2 hover:text-primary-600 transition">
517
  <span class="text-gray-600">techinnov.io (1 an)</span>
518
  <span class="font-medium">€12.99</span>
519
  </div>
520
+ <div class="flex justify-between items-center mb-2 hover:text-primary-600 transition">
521
  <span class="text-gray-600">SSL Premium</span>
522
  <span class="font-medium">€0.00</span>
523
  </div>
524
+ <div class="flex justify-between items-center mb-2 hover:text-primary-600 transition">
525
  <span class="text-gray-600">DNS Ultra-Rapide</span>
526
  <span class="font-medium">€0.00</span>
527
  </div>
528
  <div class="pt-3 mt-3 border-t border-gray-200 flex justify-between items-center">
529
  <span class="font-medium">Total</span>
530
+ <span class="text-xl font-bold animate-pulse">€12.99</span>
531
  </div>
532
  </div>
533
  </div>
534
 
535
+ <button class="w-full bg-primary-600 hover:bg-primary-700 text-white py-3 rounded-lg font-medium flex items-center justify-center transition hover-scale ripple animate-glow">
536
  <i class="fas fa-credit-card mr-2"></i> Procéder au paiement
537
  </button>
538
  </div>
 
546
  <div class="container mx-auto px-4">
547
  <div class="grid md:grid-cols-4 gap-8">
548
  <div class="md:col-span-2">
549
+ <div class="flex items-center space-x-3 mb-4 hover-scale">
550
+ <div class="bg-white p-2 rounded-lg animate-spin-slow">
551
  <i class="fas fa-robot text-primary-600 text-2xl"></i>
552
  </div>
553
+ <h3 class="text-xl font-bold">DOMAIBOT <span class="gradient-text">PRO</span></h3>
554
  </div>
555
  <p class="text-gray-400 mb-6">Système automatisé d'enregistrement de domaine avec propagation DNS mondiale instantanée, SSL gratuit et optimisation SEO automatique.</p>
556
  <div class="flex space-x-4">
557
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl hover:animate-bounce">
558
  <i class="fab fa-twitter"></i>
559
  </a>
560
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl hover:animate-bounce">
561
  <i class="fab fa-linkedin"></i>
562
  </a>
563
+ <a href="#" class="text-gray-400 hover:text-white transition text-xl hover:animate-bounce">
564
  <i class="fab fa-github"></i>
565
  </a>
566
  </div>
 
569
  <div>
570
  <h4 class="font-bold text-lg mb-4">Services</h4>
571
  <ul class="space-y-3">
572
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
573
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Enregistrement de domaine
574
  </a></li>
575
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
576
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Certificats SSL
577
  </a></li>
578
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
579
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Hébergement DNS
580
  </a></li>
581
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
582
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Optimisation SEO
583
  </a></li>
584
  </ul>
585
  </div>
 
587
  <div>
588
  <h4 class="font-bold text-lg mb-4">Support</h4>
589
  <ul class="space-y-3">
590
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
591
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Centre d'aide
592
  </a></li>
593
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
594
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Documentation API
595
  </a></li>
596
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
597
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Statut des services
598
  </a></li>
599
+ <li><a href="#" class="text-gray-400 hover:text-white transition flex items-center group">
600
+ <i class="fas fa-chevron-right text-xs mr-2 text-primary-500 group-hover:animate-bounce"></i> Contact
601
  </a></li>
602
  </ul>
603
  </div>
 
608
  © 2023 DOMAIBOT PRO. Tous droits réservés.
609
  </p>
610
  <div class="flex space-x-6">
611
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm hover:underline">Confidentialité</a>
612
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm hover:underline">Conditions</a>
613
+ <a href="#" class="text-gray-500 hover:text-white transition text-sm hover:underline">RGPD</a>
614
  </div>
615
  </div>
616
  </div>
 
643
 
644
  registerButton.addEventListener('click', function() {
645
  if(domainInput.value.trim() !== '') {
646
+ // Add pulse animation
647
+ this.classList.add('animate-pulse-once');
648
 
649
+ setTimeout(() => {
650
+ alert("Domaine enregistré avec succès ! Propagation DNS mondiale en cours...\n\nSSL délivré automatiquement\nDNS Anycast configuré\nSearch Console & Analytics connectés");
651
+ domainInput.value = '';
652
+
653
+ // Simulate adding to cart
654
+ const cartTotal = document.querySelector('.text-xl.font-bold');
655
+ cartTotal.textContent = '€0.00';
656
+
657
+ // Remove pulse animation
658
+ this.classList.remove('animate-pulse-once');
659
+ }, 500);
660
  }
661
  });
662
 
 
665
  const paypalButton = document.querySelector('.fa-cc-paypal').parentNode;
666
 
667
  stripeButton.addEventListener('click', function() {
668
+ this.classList.add('animate-pulse-once');
669
+ setTimeout(() => {
670
+ alert("Redirection vers Stripe pour le paiement sécurisé...");
671
+ this.classList.remove('animate-pulse-once');
672
+ }, 500);
673
  });
674
 
675
  paypalButton.addEventListener('click', function() {
676
+ this.classList.add('animate-pulse-once');
677
+ setTimeout(() => {
678
+ alert("Redirection vers PayPal pour le paiement sécurisé...");
679
+ this.classList.remove('animate-pulse-once');
680
+ }, 500);
681
+ });
682
+
683
+ // Ripple effect for buttons
684
+ const buttons = document.querySelectorAll('.ripple');
685
+ buttons.forEach(button => {
686
+ button.addEventListener('click', function(e) {
687
+ e.preventDefault();
688
+ const rect = this.getBoundingClientRect();
689
+ const x = e.clientX - rect.left;
690
+ const y = e.clientY - rect.top;
691
+
692
+ const ripple = this.querySelector('.ripple-effect') || document.createElement('span');
693
+ ripple.classList.add('ripple-effect');
694
+ ripple.style.left = `${x}px`;
695
+ ripple.style.top = `${y}px`;
696
+
697
+ this.appendChild(ripple);
698
+
699
+ setTimeout(() => {
700
+ ripple.remove();
701
+ }, 1000);
702
+ });
703
  });
704
 
705
  // Check admin access
706
+ console.log("%cAccès admin confirmé pour:", "color: #0ea5e9; font-weight: bold; font-size: 14px");
707
+ console.log("%cvgp.bavol@gmail.com : Admin270574@", "color: #10b981;");
708
+ console.log("%cdoctorblog.fr@gmail.com : Admin270574@", "color: #10b981;");
709
+
710
+ // Animate elements on scroll
711
+ const animateOnScroll = () => {
712
+ const elements = document.querySelectorAll('.animate-slide-up');
713
+
714
+ elements.forEach(element => {
715
+ const elementPosition = element.getBoundingClientRect().top;
716
+ const screenPosition = window.innerHeight / 1.3;
717
+
718
+ if(elementPosition < screenPosition) {
719
+ element.style.opacity = '1';
720
+ element.style.transform = 'translateY(0)';
721
+ }
722
+ });
723
+ };
724
+
725
+ // Set initial state for slide-up elements
726
+ document.querySelectorAll('.animate-slide-up').forEach(el => {
727
+ el.style.opacity = '0';
728
+ el.style.transform = 'translateY(20px)';
729
+ el.style.transition = 'all 0.5s ease-out';
730
+ });
731
+
732
+ window.addEventListener('scroll', animateOnScroll);
733
+ animateOnScroll(); // Run once on load
734
  });
735
  </script>
736
  <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/domaibot-pro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
prompts.txt CHANGED
@@ -1,3 +1,4 @@
1
  ENREGISTREMENT DE DOMAINE ROBOTISÉ Système automatisé de gestion de domaine avec intelligence artificielle
2
  je veux une belle interface
3
- enregistrement domaine, ssl , serveur dns, etc.. en automatique , avec enregistrement au registraire directement dans la seconde qui suit sur toutes les navigateur du monde , serveur dns les plus puissant et plus rapide du monde a la seconde pres , avec référencement google searche console et google analytique directement robotisé le tout sur systeme sofistiqué 24/24 et 7jour sur 7jour le tout automatisé , Enregistrez votre domaine gratuitement Obtenez un nom de domaine, SSL, DNS et hébergement en quelques secondes:: Domain Information Registrar Information Registrant Contact .avec une tres belle interface:: je veux acces gratuite pour moi seulement administrateur : vgp.bavol@gmail.com : Admin270574@ et doctorblog.fr@gmail.com : Admin270574@ ajouter tableau de bord avec les information de paiement paypal, stripe, avec bouton stripe ,bouton paypal etc.. plus panier d'achat
 
 
1
  ENREGISTREMENT DE DOMAINE ROBOTISÉ Système automatisé de gestion de domaine avec intelligence artificielle
2
  je veux une belle interface
3
+ enregistrement domaine, ssl , serveur dns, etc.. en automatique , avec enregistrement au registraire directement dans la seconde qui suit sur toutes les navigateur du monde , serveur dns les plus puissant et plus rapide du monde a la seconde pres , avec référencement google searche console et google analytique directement robotisé le tout sur systeme sofistiqué 24/24 et 7jour sur 7jour le tout automatisé , Enregistrez votre domaine gratuitement Obtenez un nom de domaine, SSL, DNS et hébergement en quelques secondes:: Domain Information Registrar Information Registrant Contact .avec une tres belle interface:: je veux acces gratuite pour moi seulement administrateur : vgp.bavol@gmail.com : Admin270574@ et doctorblog.fr@gmail.com : Admin270574@ ajouter tableau de bord avec les information de paiement paypal, stripe, avec bouton stripe ,bouton paypal etc.. plus panier d'achat
4
+ je la veux plus animé cet interface