mirror of
https://github.com/arthur-pbty/LazyBot.git
synced 2026-06-05 13:50:49 +02:00
26 lines
564 B
HTML
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>
|