Sorry I am a total newb. I deployed this site https://visionary-cupcake-b69c3d.netlify.app/
</script>
<!-- Start of the added Telegram script -->
<script async src="https://telegram.org/js/telegram-widget.js?22" data-telegram-login="Guardian200_bot" data-size="large" data-auth-url="ya.ru"></script>
</script>
<!-- End of the added Telegram script -->
Yet login widget is not showing up. Why it could be?
I redeployed it few times, checked various settings from there https://core.telegram.org/widgets/login to no avail
It seems like you have put the <script>
tag inside the <head>
. Put it somewhere inside the <body>
, so it can be displayed when the button component is created.
<body>
<div class="content">
<!-- your app -->
<!-- the script tag provided by Telegram wherever you want the button to be --->
</div>
</body>