https://arrakken.farm/

제출된 URL:
https://arrakken.farm/
보고서 완료:

링크 · 0개 결과

JavaScript 변수 · 9개 결과

콘솔 로그 메시지 · 8개 결과

HTML

<!DOCTYPE html><html style="--tg-viewport-height: 100vh; --tg-viewport-stable-height: 100vh;"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Arrakken</title>
    <script src="https://telegram.org/js/telegram-web-app.js"></script>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        .bottom-menu {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        .bottom-menu a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }
</style>

<script>
function GetUserData() {

  $.post("/wa.php",
    {"data": window.Telegram.WebApp.initData},

    function(data) {
      var x = JSON.parse(data);

      if (x.status != 'success') {
        $('#tst').html("Can`t get user data...");
        return;
      }

      $('#tst').html(x.balance + " gold");
    });
}

  window.onload = function() {
    GetUserData();
  };

  let tg = window.Telegram.WebApp;
  tg.expand();

  tg.MainButton.setText("Account info").show().onClick(function() {
    tg.showAlert("clicked");
  });

</script>
</head>

<body>
  <p id="tst">...</p>

   <div class="bottom-menu">
        <a href="#">Lands</a>
        <a href="#">NFT</a>
        <a href="#">Wallet</a>
        <a href="#">Market</a>
   </div>


</body></html>