|
<!DOCTYPE html> |
|
<html lang="fr"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Installation Complète WordPress - Tout-en-Un</title> |
|
<script src="https://cdn.tailwindcss.com"></script> |
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
<style> |
|
@keyframes float { |
|
0%, 100% { transform: translateY(0px); } |
|
50% { transform: translateY(-20px); } |
|
} |
|
|
|
@keyframes pulse { |
|
0%, 100% { transform: scale(1); opacity: 1; } |
|
50% { transform: scale(1.05); opacity: 0.9; } |
|
} |
|
|
|
@keyframes wave { |
|
0% { background-position: 0% 50%; } |
|
50% { background-position: 100% 50%; } |
|
100% { background-position: 0% 50%; } |
|
} |
|
|
|
@keyframes shine { |
|
0% { background-position: -200%; } |
|
100% { background-position: 200%; } |
|
} |
|
|
|
.floating { |
|
animation: float 6s ease-in-out infinite; |
|
} |
|
|
|
.pulse { |
|
animation: pulse 2s infinite; |
|
} |
|
|
|
.wave-bg { |
|
background: linear-gradient(135deg, #6e8efb, #a777e3, #4facfe, #00f2fe); |
|
background-size: 400% 400%; |
|
animation: wave 15s ease infinite; |
|
} |
|
|
|
.shine-effect { |
|
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); |
|
background-size: 200% auto; |
|
animation: shine 3s linear infinite; |
|
} |
|
|
|
.card-hover { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
|
} |
|
|
|
.progress-bar { |
|
transition: width 0.6s ease; |
|
} |
|
|
|
.checkmark { |
|
stroke-dasharray: 100; |
|
stroke-dashoffset: 100; |
|
animation: dash 1s ease-in-out forwards; |
|
} |
|
|
|
@keyframes dash { |
|
to { stroke-dashoffset: 0; } |
|
} |
|
|
|
.glow { |
|
filter: drop-shadow(0 0 8px rgba(255,255,255,0.6)); |
|
} |
|
|
|
.bounce { |
|
animation: bounce 2s infinite; |
|
} |
|
|
|
@keyframes bounce { |
|
0%, 100% { transform: translateY(0); } |
|
50% { transform: translateY(-10px); } |
|
} |
|
|
|
.rotate { |
|
animation: rotate 15s linear infinite; |
|
} |
|
|
|
@keyframes rotate { |
|
from { transform: rotate(0deg); } |
|
to { transform: rotate(360deg); } |
|
} |
|
</style> |
|
</head> |
|
<body class="min-h-screen wave-bg text-white font-sans overflow-x-hidden"> |
|
|
|
<div class="fixed inset-0 overflow-hidden pointer-events-none"> |
|
<div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-white bg-opacity-10 glow floating"></div> |
|
<div class="absolute top-1/3 right-1/5 w-40 h-40 rounded-full bg-white bg-opacity-5 glow floating" style="animation-delay: 2s;"></div> |
|
<div class="absolute bottom-1/4 left-1/5 w-24 h-24 rounded-full bg-white bg-opacity-15 glow floating" style="animation-delay: 4s;"></div> |
|
<div class="absolute bottom-1/3 right-1/4 w-36 h-36 rounded-full bg-white bg-opacity-8 glow floating" style="animation-delay: 1s;"></div> |
|
</div> |
|
|
|
<div class="container mx-auto px-4 py-12 relative z-10"> |
|
|
|
<header class="text-center mb-12"> |
|
<div class="floating inline-block mb-6 relative"> |
|
<i class="fab fa-wordpress text-6xl text-white glow"></i> |
|
<div class="absolute -inset-4 rounded-full border-2 border-white border-opacity-20 rotate"></div> |
|
</div> |
|
<h1 class="text-4xl md:text-5xl font-bold mb-4 glow">Solution WordPress Tout-en-Un</h1> |
|
<p class="text-xl opacity-90 max-w-3xl mx-auto">Obtenez un site WordPress complet avec domaine gratuit, SSL, hébergement et outils intégrés en 1 clic !</p> |
|
</header> |
|
|
|
|
|
<div class="max-w-5xl mx-auto bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl shadow-2xl overflow-hidden card-hover border border-white border-opacity-20 relative"> |
|
<div class="absolute inset-0 shine-effect opacity-30"></div> |
|
|
|
|
|
<div class="flex justify-between px-8 pt-8 relative z-10"> |
|
<div class="step flex flex-col items-center relative"> |
|
<div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-2"> |
|
<div class="w-8 h-8 rounded-full bg-white flex items-center justify-center text-indigo-600 font-bold">1</div> |
|
</div> |
|
<span class="text-sm font-medium">Configuration</span> |
|
<div class="absolute top-5 left-12 right-0 h-1 bg-white bg-opacity-20 -z-10"></div> |
|
</div> |
|
<div class="step flex flex-col items-center relative"> |
|
<div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-2"> |
|
<div class="w-8 h-8 rounded-full bg-white bg-opacity-30 flex items-center justify-center text-white font-bold">2</div> |
|
</div> |
|
<span class="text-sm font-medium">Domaine & SSL</span> |
|
<div class="absolute top-5 left-0 right-12 h-1 bg-white bg-opacity-20 -z-10"></div> |
|
</div> |
|
<div class="step flex flex-col items-center relative"> |
|
<div class="w-12 h-12 rounded-full bg-white bg-opacity-20 flex items-center justify-center mb-2"> |
|
<div class="w-8 h-8 rounded-full bg-white bg-opacity-10 flex items-center justify-center text-white font-bold">3</div> |
|
</div> |
|
<span class="text-sm font-medium">Terminé</span> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="p-8 relative z-10"> |
|
<h2 class="text-2xl font-bold mb-6 glow">Configuration de votre solution complète</h2> |
|
|
|
<div class="grid md:grid-cols-2 gap-6 mb-8"> |
|
<div> |
|
<label class="block text-sm font-medium mb-2" for="site-name">Nom du site</label> |
|
<input type="text" id="site-name" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="Mon Super Site"> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-2" for="domain-name">Nom de domaine gratuit</label> |
|
<div class="flex"> |
|
<input type="text" id="domain-name" class="flex-1 px-4 py-3 rounded-l-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="monsite"> |
|
<div class="px-4 py-3 bg-white bg-opacity-30 border-t border-r border-b border-white border-opacity-30 rounded-r-lg">.webstarter.fr</div> |
|
</div> |
|
<p class="text-xs mt-1 opacity-70">SSL inclus automatiquement pour une sécurité maximale</p> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-2" for="admin-email">Email administrateur</label> |
|
<input type="email" id="admin-email" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="votre@email.com"> |
|
</div> |
|
<div> |
|
<label class="block text-sm font-medium mb-2" for="admin-pass">Mot de passe</label> |
|
<div class="relative"> |
|
<input type="password" id="admin-pass" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-20 border border-white border-opacity-30 focus:outline-none focus:ring-2 focus:ring-white focus:ring-opacity-50 placeholder-white placeholder-opacity-70" placeholder="••••••••"> |
|
<button class="absolute right-3 top-3 text-white opacity-70 hover:opacity-100"> |
|
<i class="far fa-eye"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mb-8"> |
|
<h3 class="text-lg font-medium mb-4">Options avancées (automatisées)</h3> |
|
<div class="grid md:grid-cols-2 gap-4"> |
|
<div class="bg-white bg-opacity-5 p-4 rounded-lg border border-white border-opacity-10"> |
|
<label class="flex items-start space-x-3"> |
|
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-indigo-600 rounded bg-white bg-opacity-20 border border-white border-opacity-30 mt-1"> |
|
<div> |
|
<span class="font-medium">Configuration DNS automatique</span> |
|
<p class="text-xs opacity-70">Serveurs DNS optimisés pré-configurés</p> |
|
</div> |
|
</label> |
|
</div> |
|
<div class="bg-white bg-opacity-5 p-4 rounded-lg border border-white border-opacity-10"> |
|
<label class="flex items-start space-x-3"> |
|
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-indigo-600 rounded bg-white bg-opacity-20 border border-white border-opacity-30 mt-1"> |
|
<div> |
|
<span class="font-medium">Email professionnel</span> |
|
<p class="text-xs opacity-70">Création automatique (contact@votredomaine)</p> |
|
</div> |
|
</label> |
|
</div> |
|
<div class="bg-white bg-opacity-5 p-4 rounded-lg border border-white border-opacity-10"> |
|
<label class="flex items-start space-x-3"> |
|
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-indigo-600 rounded bg-white bg-opacity-20 border border-white border-opacity-30 mt-1"> |
|
<div> |
|
<span class="font-medium">Thème professionnel</span> |
|
<p class="text-xs opacity-70">Design moderne et responsive inclus</p> |
|
</div> |
|
</label> |
|
</div> |
|
<div class="bg-white bg-opacity-5 p-4 rounded-lg border border-white border-opacity-10"> |
|
<label class="flex items-start space-x-3"> |
|
<input type="checkbox" checked class="form-checkbox h-5 w-5 text-indigo-600 rounded bg-white bg-opacity-20 border border-white border-opacity-30 mt-1"> |
|
<div> |
|
<span class="font-medium">Plugins essentiels</span> |
|
<p class="text-xs opacity-70">SEO, sécurité, cache et performances</p> |
|
</div> |
|
</label> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="text-center"> |
|
<button id="install-btn" class="pulse px-8 py-4 bg-white text-indigo-600 rounded-full font-bold text-lg hover:bg-opacity-90 transform transition-all duration-300 hover:scale-105 shadow-lg glow"> |
|
<i class="fas fa-bolt mr-2"></i> Tout configurer automatiquement |
|
</button> |
|
<p class="text-sm opacity-80 mt-3">Hébergement, domaine, SSL, DNS, emails et WordPress pré-optimisé</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="max-w-6xl mx-auto mt-16"> |
|
<h2 class="text-2xl font-bold text-center mb-8 glow">Une solution complète sans effort</h2> |
|
<div class="grid md:grid-cols-3 gap-8"> |
|
<div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-filter backdrop-blur-lg card-hover border border-white border-opacity-10 relative overflow-hidden"> |
|
<div class="absolute -right-8 -top-8 w-32 h-32 rounded-full bg-white bg-opacity-5"></div> |
|
<div class="text-4xl mb-4 text-indigo-200 bounce"> |
|
<i class="fas fa-globe"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">Domaine gratuit + SSL</h3> |
|
<p class="opacity-90">Obtenez un nom de domaine .webstarter.fr gratuit avec certificat SSL inclus pour une sécurité maximale.</p> |
|
</div> |
|
<div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-filter backdrop-blur-lg card-hover border border-white border-opacity-10 relative overflow-hidden"> |
|
<div class="absolute -left-8 -bottom-8 w-32 h-32 rounded-full bg-white bg-opacity-5"></div> |
|
<div class="text-4xl mb-4 text-indigo-200 bounce" style="animation-delay: 0.2s;"> |
|
<i class="fas fa-server"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">Serveurs DNS optimisés</h3> |
|
<p class="opacity-90">Configuration automatique des serveurs DNS pour des performances et une disponibilité optimales.</p> |
|
</div> |
|
<div class="bg-white bg-opacity-10 p-6 rounded-xl backdrop-filter backdrop-blur-lg card-hover border border-white border-opacity-10 relative overflow-hidden"> |
|
<div class="absolute -right-8 -bottom-8 w-32 h-32 rounded-full bg-white bg-opacity-5"></div> |
|
<div class="text-4xl mb-4 text-indigo-200 bounce" style="animation-delay: 0.4s;"> |
|
<i class="fas fa-envelope"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-2">Emails professionnels</h3> |
|
<p class="opacity-90">Adresses email personnalisées incluses automatiquement (contact@votredomaine).</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="install-modal" class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50 hidden"> |
|
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl p-8 max-w-md w-full mx-4 border border-white border-opacity-20 relative overflow-hidden"> |
|
<div class="absolute inset-0 shine-effect opacity-20"></div> |
|
<div class="relative z-10 text-center"> |
|
<div class="w-20 h-20 mx-auto mb-6 relative"> |
|
<svg class="w-full h-full" viewBox="0 0 100 100"> |
|
<circle cx="50" cy="50" r="45" fill="none" stroke="#ffffff20" stroke-width="8"/> |
|
<circle id="progress-circle" cx="50" cy="50" r="45" fill="none" stroke="#ffffff" stroke-width="8" stroke-dasharray="283" stroke-dashoffset="283" transform="rotate(-90 50 50)"/> |
|
</svg> |
|
<div class="absolute inset-0 flex items-center justify-center"> |
|
<i id="install-icon" class="fas fa-cog text-3xl text-white animate-spin"></i> |
|
</div> |
|
</div> |
|
|
|
<h3 class="text-xl font-bold mb-2 glow">Configuration automatique en cours</h3> |
|
<p id="install-status" class="mb-6">Initialisation du processus tout-en-un...</p> |
|
|
|
<div class="bg-white bg-opacity-20 rounded-full h-2 mb-6"> |
|
<div id="progress-bar" class="progress-bar bg-white h-2 rounded-full" style="width: 0%"></div> |
|
</div> |
|
|
|
<div id="steps-container" class="text-left space-y-2 mb-6 max-h-64 overflow-y-auto pr-2"> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Enregistrement du domaine gratuit</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Configuration des serveurs DNS</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Installation du certificat SSL</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Création des adresses email</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Téléchargement de WordPress</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Installation du thème professionnel</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Configuration des plugins essentiels</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Optimisation des performances</span> |
|
</div> |
|
<div class="step-item opacity-50"> |
|
<i class="far fa-circle mr-2"></i> <span>Finalisation de l'installation</span> |
|
</div> |
|
</div> |
|
|
|
<button id="cancel-btn" class="px-6 py-2 bg-white bg-opacity-20 rounded-full font-medium hover:bg-opacity-30 transition-all"> |
|
Annuler |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div id="success-modal" class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50 hidden"> |
|
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl p-8 max-w-md w-full mx-4 text-center border border-white border-opacity-20 relative overflow-hidden"> |
|
<div class="absolute inset-0 shine-effect opacity-20"></div> |
|
<div class="relative z-10"> |
|
<div class="w-24 h-24 mx-auto mb-6 bg-green-500 bg-opacity-20 rounded-full flex items-center justify-center glow"> |
|
<svg class="checkmark w-16 h-16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"> |
|
<circle class="checkmark__circle" cx="26" cy="26" r="25" fill="none" stroke="#ffffff" stroke-width="2"/> |
|
<path class="checkmark__check" fill="none" stroke="#ffffff" stroke-width="4" stroke-linecap="round" d="M14.1 27.2l7.1 7.2 16.7-16.8"/> |
|
</svg> |
|
</div> |
|
|
|
<h3 class="text-2xl font-bold mb-2 glow">Configuration réussie !</h3> |
|
<p class="mb-6">Votre solution WordPress complète est prête.</p> |
|
|
|
<div class="space-y-3 mb-8"> |
|
<a href="#" class="block px-6 py-3 bg-white text-indigo-600 rounded-full font-bold hover:bg-opacity-90 transition-all glow"> |
|
<i class="fas fa-external-link-alt mr-2"></i> Accéder à l'administration |
|
</a> |
|
<a href="#" class="block px-6 py-3 bg-white bg-opacity-10 rounded-full font-medium hover:bg-opacity-20 transition-all"> |
|
<i class="fas fa-globe mr-2"></i> Voir mon site |
|
</a> |
|
<a href="#" class="block px-6 py-3 bg-white bg-opacity-10 rounded-full font-medium hover:bg-opacity-20 transition-all"> |
|
<i class="fas fa-envelope mr-2"></i> Accéder aux emails |
|
</a> |
|
</div> |
|
|
|
<div class="text-sm opacity-80 bg-white bg-opacity-5 p-4 rounded-lg"> |
|
<p class="font-medium">Votre domaine : <span id="success-domain" class="text-green-300">monsite.webstarter.fr</span></p> |
|
<p class="mt-2">Identifiants et informations envoyés à votre adresse email.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
document.addEventListener('DOMContentLoaded', function() { |
|
const installBtn = document.getElementById('install-btn'); |
|
const installModal = document.getElementById('install-modal'); |
|
const successModal = document.getElementById('success-modal'); |
|
const cancelBtn = document.getElementById('cancel-btn'); |
|
const progressBar = document.getElementById('progress-bar'); |
|
const progressCircle = document.getElementById('progress-circle'); |
|
const installIcon = document.getElementById('install-icon'); |
|
const installStatus = document.getElementById('install-status'); |
|
const stepItems = document.querySelectorAll('.step-item'); |
|
const successDomain = document.getElementById('success-domain'); |
|
const domainInput = document.getElementById('domain-name'); |
|
const siteNameInput = document.getElementById('site-name'); |
|
|
|
|
|
installBtn.addEventListener('click', function() { |
|
const domainName = domainInput.value || 'monsite'; |
|
successDomain.textContent = `${domainName}.webstarter.fr`; |
|
|
|
installModal.classList.remove('hidden'); |
|
|
|
|
|
let progress = 0; |
|
const interval = setInterval(() => { |
|
progress += Math.random() * 8; |
|
if (progress > 100) progress = 100; |
|
|
|
progressBar.style.width = `${progress}%`; |
|
progressCircle.style.strokeDashoffset = 283 - (283 * progress / 100); |
|
|
|
|
|
if (progress < 10) { |
|
installStatus.textContent = "Enregistrement du domaine..."; |
|
} else if (progress < 20) { |
|
installStatus.textContent = "Configuration des serveurs DNS..."; |
|
stepItems[0].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Enregistrement du domaine gratuit'; |
|
stepItems[0].classList.remove('opacity-50'); |
|
} else if (progress < 30) { |
|
installStatus.textContent = "Installation du certificat SSL..."; |
|
stepItems[1].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Configuration des serveurs DNS'; |
|
stepItems[1].classList.remove('opacity-50'); |
|
} else if (progress < 40) { |
|
installStatus.textContent = "Création des adresses email..."; |
|
stepItems[2].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Installation du certificat SSL'; |
|
stepItems[2].classList.remove('opacity-50'); |
|
} else if (progress < 50) { |
|
installStatus.textContent = "Téléchargement de WordPress..."; |
|
stepItems[3].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Création des adresses email'; |
|
stepItems[3].classList.remove('opacity-50'); |
|
} else if (progress < 60) { |
|
installStatus.textContent = "Installation du thème..."; |
|
stepItems[4].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Téléchargement de WordPress'; |
|
stepItems[4].classList.remove('opacity-50'); |
|
} else if (progress < 70) { |
|
installStatus.textContent = "Configuration des plugins..."; |
|
stepItems[5].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Installation du thème professionnel'; |
|
stepItems[5].classList.remove('opacity-50'); |
|
} else if (progress < 85) { |
|
installStatus.textContent = "Optimisation des performances..."; |
|
stepItems[6].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Configuration des plugins essentiels'; |
|
stepItems[6].classList.remove('opacity-50'); |
|
} else if (progress < 95) { |
|
installStatus.textContent = "Finalisation..."; |
|
stepItems[7].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Optimisation des performances'; |
|
stepItems[7].classList.remove('opacity-50'); |
|
} |
|
|
|
|
|
if (progress === 100) { |
|
clearInterval(interval); |
|
setTimeout(() => { |
|
installModal.classList.add('hidden'); |
|
successModal.classList.remove('hidden'); |
|
|
|
stepItems[8].innerHTML = '<i class="fas fa-check-circle text-green-400 mr-2"></i> Finalisation de l\'installation'; |
|
stepItems[8].classList.remove('opacity-50'); |
|
}, 800); |
|
} |
|
}, 500); |
|
|
|
|
|
cancelBtn.addEventListener('click', function() { |
|
clearInterval(interval); |
|
installModal.classList.add('hidden'); |
|
|
|
|
|
progressBar.style.width = '0%'; |
|
progressCircle.style.strokeDashoffset = '283'; |
|
installStatus.textContent = "Initialisation du processus tout-en-un..."; |
|
|
|
|
|
stepItems.forEach(item => { |
|
item.innerHTML = item.innerHTML.replace('fa-check-circle', 'fa-circle').replace('text-green-400', ''); |
|
item.classList.add('opacity-50'); |
|
}); |
|
}, {once: true}); |
|
}); |
|
|
|
|
|
const passwordInput = document.getElementById('admin-pass'); |
|
const togglePassword = document.querySelector('#admin-pass + button'); |
|
|
|
togglePassword.addEventListener('click', function() { |
|
const type = passwordInput.getAttribute('type') === 'password' ? 'text' : 'password'; |
|
passwordInput.setAttribute('type', type); |
|
this.innerHTML = type === 'password' ? '<i class="far fa-eye"></i>' : '<i class="far fa-eye-slash"></i>'; |
|
}); |
|
|
|
|
|
siteNameInput.addEventListener('input', function() { |
|
if(domainInput.value === '') { |
|
const domain = this.value.toLowerCase() |
|
.replace(/[^a-z0-9]/g, '-') |
|
.replace(/-+/g, '-') |
|
.replace(/^-|-$/g, ''); |
|
domainInput.value = domain; |
|
} |
|
}); |
|
}); |
|
</script> |
|
<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/wordpress" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |