docto41 commited on
Commit
ce66f39
·
verified ·
1 Parent(s): 9ed531d

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +272 -19
  3. prompts.txt +12 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Domain
3
- emoji: 📉
4
- colorFrom: pink
5
- colorTo: blue
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: domain
3
+ emoji: 🐳
4
+ colorFrom: gray
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,272 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Infrastructure Web Automatisée 1-Click</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
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .card-hover:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .tab-content {
18
+ display: none;
19
+ }
20
+ .tab-content.active {
21
+ display: block;
22
+ animation: fadeIn 0.5s;
23
+ }
24
+ @keyframes fadeIn {
25
+ from { opacity: 0; }
26
+ to { opacity: 1; }
27
+ }
28
+ .blink {
29
+ animation: blink 1s step-end infinite;
30
+ }
31
+ @keyframes blink {
32
+ 50% { opacity: 0; }
33
+ }
34
+ .payment-method {
35
+ transition: all 0.3s ease;
36
+ }
37
+ .payment-method:hover {
38
+ transform: scale(1.03);
39
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
40
+ }
41
+ .info-card {
42
+ transition: all 0.3s ease;
43
+ border-left: 4px solid;
44
+ }
45
+ .info-card:hover {
46
+ transform: translateY(-3px);
47
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
48
+ }
49
+ .domain-status-badge {
50
+ font-size: 0.75rem;
51
+ padding: 0.25rem 0.5rem;
52
+ border-radius: 9999px;
53
+ }
54
+ .copy-btn {
55
+ cursor: pointer;
56
+ transition: all 0.2s;
57
+ }
58
+ .copy-btn:hover {
59
+ opacity: 0.8;
60
+ }
61
+ .copy-btn.copied {
62
+ background-color: #10B981 !important;
63
+ }
64
+ .admin-badge {
65
+ position: absolute;
66
+ top: 10px;
67
+ right: 10px;
68
+ background: linear-gradient(45deg, #FF8E53, #FE6B8B);
69
+ color: white;
70
+ padding: 2px 8px;
71
+ border-radius: 9999px;
72
+ font-size: 0.7rem;
73
+ font-weight: bold;
74
+ }
75
+ </style>
76
+ </head>
77
+ <body class="font-sans bg-gray-50">
78
+ <div class="min-h-screen">
79
+ <!-- Header -->
80
+ <header class="gradient-bg text-white shadow-lg">
81
+ <div class="container mx-auto px-4 py-6">
82
+ <div class="flex flex-col md:flex-row justify-between items-center">
83
+ <div class="flex items-center mb-4 md:mb-0">
84
+ <i class="fas fa-bolt text-3xl mr-3"></i>
85
+ <h1 class="text-2xl font-bold">Infrastructure Web 1-Click</h1>
86
+ </div>
87
+ <div class="flex items-center space-x-4">
88
+ <button id="cartIcon" class="relative text-white hover:text-gray-200 transition">
89
+ <i class="fas fa-shopping-cart text-xl"></i>
90
+ <span id="cartCount" class="absolute -top-2 -right-2 bg-red-500 text-white text-xs rounded-full h-5 w-5 flex items-center justify-center hidden">0</span>
91
+ </button>
92
+ <button id="loginBtn" class="bg-white text-purple-600 px-4 py-2 rounded-lg font-medium hover:bg-gray-100 transition">
93
+ <i class="fas fa-sign-in-alt mr-2"></i> Connexion Admin
94
+ </button>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </header>
99
+
100
+ <!-- Admin Dashboard (hidden by default) -->
101
+ <div id="adminDashboard" class="hidden">
102
+ <nav class="bg-gray-800 text-white p-4">
103
+ <div class="container mx-auto flex justify-between items-center">
104
+ <div class="flex items-center space-x-4">
105
+ <i class="fas fa-tachometer-alt"></i>
106
+ <span class="font-bold">Tableau de bord Admin</span>
107
+ </div>
108
+ <div class="flex items-center space-x-4">
109
+ <span id="adminEmail" class="text-sm"></span>
110
+ <button id="logoutBtn" class="bg-red-500 hover:bg-red-600 px-3 py-1 rounded text-sm">
111
+ <i class="fas fa-sign-out-alt mr-1"></i> Déconnexion
112
+ </button>
113
+ </div>
114
+ </div>
115
+ </nav>
116
+
117
+ <div class="container mx-auto px-4 py-8">
118
+ <!-- Quick Actions -->
119
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
120
+ <div class="bg-white rounded-xl shadow-md p-6 relative">
121
+ <div class="admin-badge">GRATUIT</div>
122
+ <h3 class="text-lg font-semibold mb-4">
123
+ <i class="fas fa-globe text-blue-500 mr-2"></i>
124
+ Enregistrement Domaine
125
+ </h3>
126
+ <p class="text-gray-600 text-sm mb-4">Obtenez un domaine gratuitement avec propagation instantanée</p>
127
+ <button class="w-full bg-blue-500 hover:bg-blue-600 text-white py-2 rounded-lg text-sm">
128
+ <i class="fas fa-plus mr-1"></i> Nouveau domaine
129
+ </button>
130
+ </div>
131
+ <div class="bg-white rounded-xl shadow-md p-6">
132
+ <h3 class="text-lg font-semibold mb-4">
133
+ <i class="fas fa-lock text-purple-500 mr-2"></i>
134
+ Certificat SSL
135
+ </h3>
136
+ <p class="text-gray-600 text-sm mb-4">Déployez un SSL automatique en 1 clic</p>
137
+ <button class="w-full bg-purple-500 hover:bg-purple-600 text-white py-2 rounded-lg text-sm">
138
+ <i class="fas fa-plus mr-1"></i> Ajouter SSL
139
+ </button>
140
+ </div>
141
+ <div class="bg-white rounded-xl shadow-md p-6">
142
+ <h3 class="text-lg font-semibold mb-4">
143
+ <i class="fas fa-server text-green-500 mr-2"></i>
144
+ DNS Premium
145
+ </h3>
146
+ <p class="text-gray-600 text-sm mb-4">Configurez des serveurs DNS ultra-rapides</p>
147
+ <button class="w-full bg-green-500 hover:bg-green-600 text-white py-2 rounded-lg text-sm">
148
+ <i class="fas fa-plus mr-1"></i> Configurer DNS
149
+ </button>
150
+ </div>
151
+ <div class="bg-white rounded-xl shadow-md p-6">
152
+ <h3 class="text-lg font-semibold mb-4">
153
+ <i class="fas fa-google text-red-500 mr-2"></i>
154
+ Intégration Google
155
+ </h3>
156
+ <p class="text-gray-600 text-sm mb-4">Automatisez le référencement Google</p>
157
+ <button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-lg text-sm">
158
+ <i class="fas fa-plus mr-1"></i> Connecter Google
159
+ </button>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Domain Details Section -->
164
+ <div class="mb-8">
165
+ <div class="flex justify-between items-center mb-6">
166
+ <h2 class="text-2xl font-bold text-gray-800">Informations du Domaine</h2>
167
+ <div class="flex space-x-3">
168
+ <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded text-sm">
169
+ <i class="fas fa-sync-alt mr-1"></i> Actualiser
170
+ </button>
171
+ <button class="bg-green-500 hover:bg-green-600 text-white px-4 py-2 rounded text-sm">
172
+ <i class="fas fa-edit mr-1"></i> Modifier
173
+ </button>
174
+ </div>
175
+ </div>
176
+
177
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-8">
178
+ <!-- Domain Information Card -->
179
+ <div class="info-card bg-white border-l-blue-500 rounded-lg shadow-sm p-6">
180
+ <div class="flex items-center justify-between mb-4">
181
+ <h3 class="text-lg font-semibold text-gray-800">
182
+ <i class="fas fa-info-circle text-blue-500 mr-2"></i>
183
+ Informations du Domaine
184
+ </h3>
185
+ <span class="domain-status-badge bg-green-100 text-green-800">Actif</span>
186
+ </div>
187
+ <div class="space-y-3">
188
+ <div>
189
+ <p class="text-sm text-gray-500 mb-1">Nom de domaine</p>
190
+ <div class="flex justify-between items-center">
191
+ <p class="font-medium">doctorblog.fr</p>
192
+ <button class="copy-btn bg-gray-100 hover:bg-gray-200 text-gray-700 px-2 py-1 rounded text-xs" onclick="copyToClipboard('doctorblog.fr')">
193
+ <i class="fas fa-copy mr-1"></i> Copier
194
+ </button>
195
+ </div>
196
+ </div>
197
+ <div>
198
+ <p class="text-sm text-gray-500 mb-1">Date de création</p>
199
+ <p class="font-medium">15/06/2020</p>
200
+ </div>
201
+ <div>
202
+ <p class="text-sm text-gray-500 mb-1">Date d'expiration</p>
203
+ <p class="font-medium">15/06/2024</p>
204
+ </div>
205
+ <div>
206
+ <p class="text-sm text-gray-500 mb-1">Serveurs DNS</p>
207
+ <div class="space-y-1">
208
+ <p class="font-mono text-sm">ns1.digitalocean.com</p>
209
+ <p class="font-mono text-sm">ns2.digitalocean.com</p>
210
+ <p class="font-mono text-sm">ns3.digitalocean.com</p>
211
+ </div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Registrar Information Card -->
217
+ <div class="info-card bg-white border-l-purple-500 rounded-lg shadow-sm p-6">
218
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">
219
+ <i class="fas fa-building text-purple-500 mr-2"></i>
220
+ Informations du Registrar
221
+ </h3>
222
+ <div class="space-y-3">
223
+ <div>
224
+ <p class="text-sm text-gray-500 mb-1">Registrar</p>
225
+ <p class="font-medium">OVH SAS</p>
226
+ </div>
227
+ <div>
228
+ <p class="text-sm text-gray-500 mb-1">WHOIS Server</p>
229
+ <p class="font-mono text-sm">whois.ovh.com</p>
230
+ </div>
231
+ <div>
232
+ <p class="text-sm text-gray-500 mb-1">URL du Registrar</p>
233
+ <a href="https://www.ovh.com" class="font-medium text-blue-500 hover:underline">www.ovh.com</a>
234
+ </div>
235
+ <div>
236
+ <p class="text-sm text-gray-500 mb-1">Contact technique</p>
237
+ <p class="font-medium">tech@ovh.com</p>
238
+ </div>
239
+ <div>
240
+ <p class="text-sm text-gray-500 mb-1">Contact administratif</p>
241
+ <p class="font-medium">admin@ovh.com</p>
242
+ </div>
243
+ </div>
244
+ </div>
245
+
246
+ <!-- Registrant Contact Card -->
247
+ <div class="info-card bg-white border-l-green-500 rounded-lg shadow-sm p-6">
248
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">
249
+ <i class="fas fa-user-tie text-green-500 mr-2"></i>
250
+ Contact du Titulaire
251
+ </h3>
252
+ <div class="space-y-3">
253
+ <div>
254
+ <p class="text-sm text-gray-500 mb-1">Nom</p>
255
+ <p class="font-medium">Vincent Gérard</p>
256
+ </div>
257
+ <div>
258
+ <p class="text-sm text-gray-500 mb-1">Organisation</p>
259
+ <p class="font-medium">DoctorBlog SAS</p>
260
+ </div>
261
+ <div>
262
+ <p class="text-sm text-gray-500 mb-1">Adresse</p>
263
+ <p class="font-medium">123 Rue des Entrepreneurs</p>
264
+ <p class="font-medium">75001 Paris, France</p>
265
+ </div>
266
+ <div>
267
+ <p class="text-sm text-gray-500 mb-1">Téléphone</p>
268
+ <p class="font-medium">+33.612345678</p>
269
+ </div>
270
+ <div>
271
+
272
+ </html>
prompts.txt ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Enregistrement de domaine instantané 24/7 Obtenez votre domaine, SSL, hébergement et DNS ultra-rapide en quelques secondes. Automatisation complète avec intégration Google en temps réel. Rechercher un domaine...
2
+ je peux pas acceder au produit , creer un tableau de bord pour entrer mes information paypal et stripe pour etre payer
3
+ aucun bouton fonctionne , veuillez corriger
4
+ toutes les bouton du tableau de bord ne fonctionne pas
5
+ aucun bouton du tableau de bors sont cliquable
6
+ ouvrer toutes les bouton dans une nouvel fenetre
7
+ ouvrer toutes les bouton dans une nouvel page
8
+ https://huggingface.co/spaces/docto41/g-n-rateur-de-r-f-rencement-instantan
9
+ 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é probleme des boutons non cliquable veuillez corriger toutes les erreur des boutons qui ne foctionne pas activer toutes les boutons non fonctionnel , réparer toute et refaire une mise a jours pour toute corriger les problelme de fonctionnement :ajouter tableau debors automatisé 24/24 et 7/7 bouton paypal , stripe , avec mes information pour etre payer , ajouter panier d'achat , LE TOUT SUR SYSTEME AUTOPILOTE SOFISTIQUE avev obligation de sabonner pour utiliser le site gratuitement : je veux acces gratuite pour moi seulement administrateur : vgp.bavol@gmail.com : Admin270574@ et doctorblog.fr@gmail.com : Admin270574@
10
+ ajouter tableau de bord avec les information de paiement paypal, stripe, avec bouton stripe ,bouton paypal etc.. plus panier d'achat
11
+ Domain Information Registrar Information Registrant Contact
12
+ Infrastructure Web Automatisée en 1 Click Enregistrement instantané de domaine, déploiement SSL, DNS ultra-rapide et intégration Google - le tout automatisé 24h/7j avec propagation mondiale en secondes. je veux acces gratuite pour moi seulement administrateur : Enregistrez votre domaine gratuitement Obtenez un nom de domaine, SSL, DNS et hébergement en quelques secondes:: Domain Information Registrar Information Registrant Contact 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