Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Бот телеграмм</title> </head> <body> <style> .btn { display: block; margin: 20px auto 0 auto; font-size: 40px; padding: 20px; border-radius: 10px; width: 30%; cursor: pointer; border: none; color: white; background-color: orange; transition: 0.1s all ease; user-select: none; } .btn:active { transform: rotateX(35deg); } .input { display: block; margin: 25% auto 0 auto; width: 40%; } </style> <input type="text" class="name" placeholder="Имя"> <input type="text" class="email" placeholder="Email"> <input type="text" class="nums" placeholder="Телефон"> <input type="text" class="model" placeholder="Модель"> <button class="btn">Push</button> <script > let btn = document.querySelector(".btn"); btn.addEventListener("click", function() { let name = document.querySelector(".name").value; let email = document.querySelector(".email").value; let nums = document.querySelector(".nums").value; let model = document.querySelector(".model").value; //let message = "Имя:" + name + console.log(" \n ") + "Почта:" + email + console.log(" \n ") +"Номер:" + nums + console.log(" \n ") + "Модель:" + model; const token = '5811493376:AAEOIzsxkx5zW3FMBi2h4qoqbOzQK3_F-5I'; const url = 'https://api.telegram.org/bot' + token + '/sendMessage?chat_id=-1001856565848&text='; let xhttp = new XMLHttpRequest(); const text = `Петя Гриша и ещё имя`; xhttp.open("GET", url + text, true); // xhttp.open("GET", url + message,true); xhttp.send(); }); </script> </body> </html>