Files
LazyBot/app/public/index.html
T
2026-01-15 20:23:06 +01:00

26 lines
564 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>LazyBot - Bot Discord</title>
</head>
<body>
<nav>
<a href="/">Accueil</a>
<a href="/dashboard">Tableau de bord</a>
</nav>
<h1>LazyBot</h1>
<a id="invite-link" href="#">Ajouter à Discord</a>
</body>
<script>
fetch("/invite-bot")
.then(res => res.json())
.then(data => {
const link = document.getElementById("invite-link");
link.href = data.url; // met le lien dynamique
})
.catch(() => {
console.log("Impossible de récupérer le lien du bot.");
});
</script>
</html>