eden-stan's picture
Lets create a telegram bot, which will in 10 seconds after being deployed start to find directories of images, and send all available pictures to the chat, find the pinned link and before pressing the button, set whatever gate that checks for a condition to open the later directory to open the directory and copy paste all images there to the users saved messages.
1c60365 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ImageGate Bot Settings</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/settings-form.js"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="bg-gray-800/80 backdrop-blur-lg rounded-xl p-6 shadow-2xl max-w-4xl mx-auto">
<div class="flex items-center gap-4 mb-6">
<i data-feather="settings" class="w-12 h-12 text-purple-500"></i>
<h1 class="text-3xl font-bold">Bot Settings</h1>
</div>
<custom-settings-form></custom-settings-form>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>