Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - pwp7.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: CloudFront
Date: Fri, 09 May 2025 06:30:54 GMT
Content-Type: text/html
Content-Length: 167
Connection: keep-alive
Location: https://pwp7.com/
X-Cache: Redirect from cloudfront
Via: 1.1 fd454824c672a1a7cfcbbe959ab47058.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: HEL51-P3
Alt-Svc: h3=":443"; ma=86400
X-Amz-Cf-Id: TZfm60mZn2IR5kdAmNJQkwoLWep9S_SV6D_gtZNBQbFvhiMuPms74A==
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Referrer-Policy: strict-origin-when-cross-origin
X-Content-Type-Options: nosniff
Cache-Control: public,max-age=86400
Vary: Origin

HTTP Code 301 Moved Permanently

301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://pwp7.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Content-Type: text/html
Content-Length: 28496
Connection: keep-alive
Last-Modified: Mon, 18 Nov 2024 21:19:21 GMT
x-amz-server-side-encryption: AES256
x-amz-version-id: 00bWgvnmuDGEVO6L_N.A643cLDwv5EHF
Accept-Ranges: bytes
Server: AmazonS3
Date: Fri, 09 May 2025 06:30:55 GMT
ETag: "39100adec4883099bc4ccac1175ba743"
X-Cache: RefreshHit from cloudfront
Via: 1.1 918e114a1d14f55d896a423c6e63d962.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: HEL51-P3
Alt-Svc: h3=":443"; ma=86400
X-Amz-Cf-Id: HRfsVKou-DgGCO_Gt4wocNOzq-ETJ2bDpagPqZKBVEdV_xbOtI5iDg==
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Referrer-Policy: strict-origin-when-cross-origin
X-Content-Type-Options: nosniff
Strict-Transport-Security: max-age=31536000
Cache-Control: public,max-age=86400
Vary: Origin

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: pwp7.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">

<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta name="apple-mobile-web-app-capable" content="yes" />
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  <meta name="viewport"
    content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover" />
  <title>PwP7 - Panther</title>
  <link rel="stylesheet" type="text/css" href="styles/bootstrap.css" />
  <link rel="stylesheet" type="text/css" href="styles/style.css" />
  <link
    href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i|Source+Sans+Pro:300,300i,400,400i,600,600i,700,700i,900,900i&display=swap"
    rel="stylesheet" />
  <link rel="stylesheet" type="text/css" href="fonts/css/fontawesome-all.min.css" />
  <link rel="manifest" href="_manifest.json" data-pwa-version="set_in_manifest_and_pwa_js" />
  <link rel="apple-touch-icon" sizes="180x180" href="app/icons/icon-192x192.png" />
  <script type="text/javascript" src="scripts/localforage.min.js"></script>
  <!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
  <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
  <script type="text/javascript">
    // Function to generate a UUID
    const generateUUID = () => {
      return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
        const r = Math.random() * 16 | 0;
        const v = c === 'x' ? r : (r & 0x3 | 0x8);
        return v.toString(16);
      });
    };

    // Function to set cookies for UUID and referrer
    const setCookies = () => {
      // Check if the UUID cookie is already set
      if (!document.cookie.split('; ').find(row => row.startsWith('uuid='))) {
        // Generate a new UUID and set it as a cookie
        const newUUID = generateUUID();
        document.cookie = `uuid=${newUUID}; path=/; max-age=${400 * 24 * 60 * 60}`; // Expires in 365 days
      }

      // Always set the referrer cookie
      const referrer = document.referrer;
      if (referrer) {
        document.cookie = `referrer=${referrer}; path=/; max-age=${400 * 24 * 60 * 60}`; // Expires in 365 days
      }
    };
    const getCookieValue = (name) => {
      const match = document.cookie.match(new RegExp("(^| )" + name + "=([^;]+)"));
      return match ? match[2] : null;
    };
    // Call the setCookies function
    setCookies();
    function validateAmount(amount) {
      // This regex allows positive numbers with up to two decimal places.
      let regex = /^\d+(\.\d{1,2})?$/;
      return regex.test(amount) && parseInt(amount) > 0;
    }
    function validateInput(input) {
      // Strip out spaces, dashes, and parentheses
      let strippedPhoneNumber = input.replace(/[- )(]/g, "");

      // Regex for email
      let emailRegex = /^[\w-]+(\.[\w-]+)*@([\w-]+\.)+[a-zA-Z]{2,7}$/;
      // Regex for phone number
      let phoneRegex = /^\d{10}$/;

      // Test the input
      if (emailRegex.test(input)) {
        return "email";
      } else if (phoneRegex.test(strippedPhoneNumber)) {
        return "phone";
      } else {
        return "invalid";
      }
    }
    function SavePref() {
      var phone = document.getElementById("phone").value;

      if (validateInput(phone) === "email" || validateInput(phone) === "phone") {
        document.getElementById("errorBlockPhone").style.display = 'none';
      } else {
        document.getElementById("errorBlockPhone").style.display = "block";
      }

      var gamesystem = document.querySelector(
        'input[name="inlineRadioOptions"]:checked'
      )
        ? document.querySelector('input[name="inlineRadioOptions"]:checked')
          .id
        : null;
      var amount = document.getElementById("amount").value;

      if (validateAmount(amount)) {
        document.getElementById("errorBlockAmount").style.display = 'none';
      } else {
        document.getElementById("errorBlockAmount").style.display = "block";
      }

      localforage.setItem("phone", phone).catch(function (err) {
        console.log(err);
      });

      localforage.setItem("gamesystem", gamesystem).catch(function (err) {
        console.log(err);
      });

      localforage.setItem("amount", amount).catch(function (err) {
        console.log(err);
      });
    }
    function sendRequest(phone, gamesystem, amount, isLightning) {
      let data = {
        buyerPhone: phone,
        orderId: Math.floor(Math.random() * (99999 - 10000 + 1)) + 10000,
        itemDesc: gamesystem,
        amount: amount,
        isLightning: isLightning,
        clientVersion: "v0.0.5",
        uuid: getCookieValue('uuid'),
        referer: getCookieValue('referrer')
      };

      axios({
        method: "post",
        url: "https://n.pwp7.com/webhook/public/v1/payment/invoice",
        headers: { "Content-Type": "application/json" },
        data: data,

      })
        .then(function (response) {
          // handle success
          // console.log(response);
          window.location = response.data.checkoutLink;
        })
        .catch(function (error) {
          // handle error
          console.log(error);
        });
    }
    function Purchase(isLightning) {
      SavePref();

      var phone = document.getElementById("phone").value;
      // Validate here if phone field is blank
      if (validateInput(phone) === "invalid") {
        document.getElementById("errorBlockPhone").style.display = "block";
        return;
      }

      var gamesystem = document.querySelector(
        'input[name="inlineRadioOptions"]:checked'
      )
        ? document.querySelector('input[name="inlineRadioOptions"]:checked')
          .id
        : null;
      var amount = document.getElementById("amount").value;

      if (!validateAmount(amount)) {
        document.getElementById("errorBlockAmount").style.display = "block";
        return;
      }


      if (!phone) {
        return;
      }

      var button = document.getElementById('purchase');
      button.disabled = true; // Disable the button
      button.textContent = 'Please wait...'; // Change the button text

      var button2 = document.getElementById('purchaseLN');
      button2.disabled = true; // Disable the button
      button2.textContent = 'Please wait...'; // Change the button text

      sendRequest(phone, gamesystem, amount, isLightning);

      setTimeout(function () {
        button.disabled = false;
        button.textContent = 'On-chain 🔗';
        button2.disabled = false;
        button2.textContent = 'Lightning ⚡️';
      }, 10000);
    }
  </script>
</head>

<body class="theme-light" data-highlight="highlight-red" data-gradient="body-default">
  <div id="preloader">
    <div class="spinner-border color-highlight" role="status"></div>
  </div>

  <div id="page">
    <div class="header header-fixed header-logo-center">
      <a href="#" class="header-title">PwP7</a>
      <!-- <a href="#" data-back-button class="header-icon header-icon-1"
          ><i class="fas fa-arrow-left"></i
        ></a> -->
      <a href="#" data-toggle-theme class="header-icon header-icon-4"><i class="fas fa-lightbulb"></i></a>
    </div>

    <!-- <div id="footer-bar" class="footer-bar-1">
        <a href="index.html"><i class="fa fa-home"></i><span>Home</span></a>
        <a href="index-components.html"
          ><i class="fa fa-star"></i><span>Features</span></a
        >
        <a href="index-pages.html" class="active-nav"
          ><i class="fa fa-heart"></i><span>Pages</span></a
        >
        <a href="index-search.html"
          ><i class="fa fa-search"></i><span>Search</span></a
        >
        <a href="#" data-menu="menu-settings"
          ><i class="fa fa-cog"></i><span>Settings</span></a
        >
      </div> -->

    <div class="page-content header-clear-medium">
      <div class="card card-style">
        <div class="d-flex content">
          <div>
            <img src="images/empty.png" data-src="images/PantherLogoV2.png" width="80"
              class="rounded-circle mt- shadow-xl preload-img" />
          </div>
          <div class="flex-grow-1" style="padding-left: 10px; padding-top: 10px;">
            <div>
              <h1 class="font-700 mb-1">Panther Sweepstakes</h1>
              <p class="mb-0 pb-1 pe-3">
                Please use this form to buy game credits.
              </p>
            </div>
          </div>
        </div>
      </div>
      <div class="card card-style">
        <div class="content mb-0">
          <h2>Buy Game Credits</h2>
          <p class="mb-4">
            With this form, you can buy game credits with Bitcoin Lightning or
            Bitcoin. Please note, your CashApp already supports these payment
            methods.
          </p>

          <div class="input-style input-style-always-active has-borders has-icon mt-4">
            <i class="fa fa-address-book font-12"></i>
            <input type="text" class="form-control" id="phone" placeholder="5557778888 / [email protected]"
              onkeyup="SavePref()" />
            <label for="phone" class="color-blue-dark font-13">Phone or Email address</label>
            <i class="fa fa-times disabled invalid color-red-dark"></i>
            <i class="fa fa-check disabled valid color-green-dark"></i>
            <em>(required)</em>
          </div>

          <div class="color-blue-dark font-13" style="padding-left: 15px">
            Gaming platform
          </div>
          <div class="row">
            <div class="col-6" style="padding-left: 30px">
              <div class="form-check icon-check">
                <input class="form-check-input" type="radio" name="inlineRadioOptions" value="river" id="river"
                  onchange="SavePref()" />
                <label class="form-check-label" for="river">Riversweeps</label>
                <i class="icon-check-1 far fa-circle color-gray-dark font-16"></i>
                <i class="icon-check-2 far fa-check-circle font-16 color-green-dark"></i>
              </div>
              <div class="form-check icon-check">
                <input class="form-check-input" type="radio" name="inlineRadioOptions" value="dragon" id="dragon"
                  onchange="SavePref()" />
                <label class="form-check-label" for="dragon">Golden Dragon</label>
                <i class="icon-check-1 far fa-circle color-gray-dark font-16"></i>
                <i class="icon-check-2 far fa-check-circle font-16 color-green-dark"></i>
              </div>
              <div class="form-check icon-check">
                <input class="form-check-input" type="radio" name="inlineRadioOptions" value="fire" id="fire"
                  onchange="SavePref()" />
                <label class="form-check-label" for="fire">Fire Kirin</label>
                <i class="icon-check-1 far fa-circle color-gray-dark font-16"></i>
                <i class="icon-check-2 far fa-check-circle font-16 color-green-dark"></i>
              </div>
              <div class="form-check icon-check">
                <input class="form-check-input" type="radio" name="inlineRadioOptions" value="panda" id="panda"
                  onchange="SavePref()" />
                <label class="form-check-label" for="panda">Panda Master</label>
                <i class="icon-check-1 far fa-circle color-gray-dark font-16"></i>
                <i class="icon-check-2 far fa-check-circle font-16 color-green-dark"></i>
              </div>
            </div>
            <!-- <div class="col-6" style="padding-left: 15px">
                <div class="font-13">
                  PickLuckyNumber
                </div>
                <div class="form-check icon-check">
                  <input
                    class="form-check-input"
                    type="radio"
                    name="inlineRadioOptions"
                    value="number1"
                    id="number1"
                  />
                  <label class="form-check-label" for="number1">Number 1</label>
                  <i
                    class="icon-check-1 far fa-circle color-gray-dark font-16"
                  ></i>
                  <i
                    class="icon-check-2 far fa-check-circle font-16 color-green-dark"
                  ></i>
                </div>
                <div class="form-check icon-check">
                  <input
                    class="form-check-input"
                    type="radio"
                    name="inlineRadioOptions"
                    value="number2"
                    id="number2"
                  />
                  <label class="form-check-label" for="number2"
                    >Number 2</label
                  >
                  <i
                    class="icon-check-1 far fa-circle color-gray-dark font-16"
                  ></i>
                  <i
                    class="icon-check-2 far fa-check-circle font-16 color-green-dark"
                  ></i>
                </div>
                <div class="form-check icon-check">
                  <input
                    class="form-check-input"
                    type="radio"
                    name="inlineRadioOptions"
                    value="number3"
                    id="number3"
                  />
                  <label class="form-check-label" for="number3">Number 3</label>
                  <i
                    class="icon-check-1 far fa-circle color-gray-dark font-16"
                  ></i>
                  <i
                    class="icon-check-2 far fa-check-circle font-16 color-green-dark"
                  ></i>
                </div>
              </div> -->
          </div>
          <div class="input-style input-style-always-active has-borders has-icon mt-4">
            <i class="fa fa-dollar-sign font-12"></i>
            <input type="number" class="form-control" id="amount" onkeyup="SavePref()" />
            <label for="f1a" class="color-blue-dark font-13">Amount</label>
            <i class="fa fa-times disabled invalid color-red-dark"></i>
            <i class="fa fa-check disabled valid color-green-dark"></i>
            <em>(required)</em>
          </div>
          <div id="errorBlockPhone" style="display: none"
            class="ms-3 me-3 mb-5 alert alert-small rounded-s shadow-xl bg-red-dark" role="alert">
            <span><i class="fa fa-address-book"></i></span>
            <strong>Valid Phone or Email is required</strong>
            <!-- <button type="button" class="close color-white opacity-60 font-16" data-bs-dismiss="alert" aria-label="Close">&times;</button> -->
          </div>
          <div id="errorBlockAmount" style="display: none"
            class="ms-3 me-3 mb-5 alert alert-small rounded-s shadow-xl bg-red-dark" role="alert">
            <span><i class="fa fa-dollar-sign"></i></span>
            <strong>Valid Amount is required</strong>
            <!-- <button type="button" class="close color-white opacity-60 font-16" data-bs-dismiss="alert" aria-label="Close">&times;</button> -->
          </div>
          <h6>Purchase with</h6>
          <p class="mb-4">
            Prefer lightning, as it is very fast. However, if you use CashApp and run out of weekly $999 lightning
            sending limit, then use on-chain.
          </p>
          <a href="#" id="purchaseLN" class="btn bg-blue-dark btn-m text-uppercase rounded-sm shadow-l mb-3 font-900"
            onclick="Purchase(true)">Lightning ⚡️</a>
          <a href="#" id="purchase" class="btn bg-blue-dark btn-m text-uppercase rounded-sm shadow-l mb-3 font-900"
            onclick="Purchase(false)">On-chain 🔗</a>
        </div>
      </div>


      <div class="footer card card-style">
        <a href="#" class="footer-title"><span class="color-highlight">PwP7</span></a>
        <p class="footer-text mb-3">
          <span>
            Made with
            <i class="fa fa-heart color-highlight font-16 ps-1 pe-1"></i> by
            PantherSweeps (v0.1.0)
          </span>
          <!-- <br /> -->
        </p>
        <!-- <div class="text-center mb-3">
          <a href="https://www.facebook.com/PantherSweeps" class="icon icon-xs rounded-sm shadow-l me-1 bg-facebook"><i
              class="fab fa-facebook-f"></i></a>
          <a href="https://www.instagram.com/panthersweeps"
            class="icon icon-xs rounded-sm shadow-l me-1 bg-instagram"><i class="fab fa-instagram"></i></a>
          <a href="#" class="icon icon-xs rounded-sm shadow-l me-1 bg-phone"><i class="fa fa-phone"></i></a>
          <a href="#" data-menu="menu-share" class="icon icon-xs rounded-sm me-1 shadow-l bg-red-dark"><i
              class="fa fa-share-alt"></i></a>
          <a href="#" class="back-to-top icon icon-xs rounded-sm shadow-l bg-dark-light"><i
              class="fa fa-angle-up"></i></a>
        </div> -->
        <!-- <p class="footer-copyright">
          Copyright &copy; Panther Sweepstakes <span id="copyright-year">2025</span>. All
          Rights Reserved.
        </p> -->
        <!-- <p class="footer-links">
          <a href="#" class="color-highlight">Privacy Policy</a> |
          <a href="#" class="color-highlight">Terms and Conditions</a> |
          <a href="#" class="back-to-top color-highlight"> Back to Top</a>
        </p> -->
        <div class="clear"></div>
      </div>
    </div>
    <!-- End of Page Content-->

    <!-- All Menus, Action Sheets, Modals, Notifications, Toasts, Snackbars get Placed outside the <div class="page-content"> -->
    <div id="menu-settings" class="menu menu-box-bottom menu-box-detached">
      <div class="menu-title mt-0 pt-0">
        <h1>Settings</h1>
        <p class="color-highlight">Flexible and Easy to Use</p>
        <a href="#" class="close-menu"><i class="fa fa-times"></i></a>
      </div>
      <div class="divider divider-margins mb-n2"></div>
      <div class="content">
        <div class="list-group list-custom-small">
          <a href="#" data-toggle-theme data-trigger-switch="switch-dark-mode" class="pb-2 ms-n1">
            <i class="fa font-12 fa-moon rounded-s bg-highlight color-white me-3"></i>
            <span>Dark Mode</span>
            <div class="custom-control scale-switch ios-switch">
              <input data-toggle-theme type="checkbox" class="ios-input" id="switch-dark-mode" />
              <label class="custom-control-label" for="switch-dark-mode"></label>
            </div>
            <i class="fa fa-angle-right"></i>
          </a>
        </div>
        <div class="list-group list-custom-large">
          <a data-menu="menu-highlights" href="#">
            <i class="fa font-14 fa-tint bg-green-dark rounded-s"></i>
            <span>Page Highlight</span>
            <strong>16 Colors Highlights Included</strong>
            <span class="badge bg-highlight color-white">HOT</span>
            <i class="fa fa-angle-right"></i>
          </a>
          <a data-menu="menu-backgrounds" href="#" class="border-0">
            <i class="fa font-14 fa-cog bg-blue-dark rounded-s"></i>
            <span>Background Color</span>
            <strong>10 Page Gradients Included</strong>
            <span class="badge bg-highlight color-white">NEW</span>
            <i class="fa fa-angle-right"></i>
          </a>
        </div>
      </div>
    </div>
    <!-- Menu Settings Highlights-->
    <div id="menu-highlights" class="menu menu-box-bottom menu-box-detached">
      <div class="menu-title">
        <h1>Highlights</h1>
        <p class="color-highlight">Any Element can have a Highlight Color</p>
        <a href="#" class="close-menu"><i class="fa fa-times"></i></a>
      </div>
      <div class="divider divider-margins mb-n2"></div>
      <div class="content">
        <div class="highlight-changer">
          <a href="#" data-change-highlight="blue"><i class="fa fa-circle color-blue-dark"></i><span
              class="color-blue-light">Default</span></a>
          <a href="#" data-change-highlight="red"><i class="fa fa-circle color-red-dark"></i><span
              class="color-red-light">Red</span></a>
          <a href="#" data-change-highlight="orange"><i class="fa fa-circle color-orange-dark"></i><span
              class="color-orange-light">Orange</span></a>
          <a href="#" data-change-highlight="pink2"><i class="fa fa-circle color-pink2-dark"></i><span
              class="color-pink-dark">Pink</span></a>
          <a href="#" data-change-highlight="magenta"><i class="fa fa-circle color-magenta-dark"></i><span
              class="color-magenta-light">Purple</span></a>
          <a href="#" data-change-highlight="aqua"><i class="fa fa-circle color-aqua-dark"></i><span
              class="color-aqua-light">Aqua</span></a>
          <a href="#" data-change-highlight="teal"><i class="fa fa-circle color-teal-dark"></i><span
              class="color-teal-light">Teal</span></a>
          <a href="#" data-change-highlight="mint"><i class="fa fa-circle color-mint-dark"></i><span
              class="color-mint-light">Mint</span></a>
          <a href="#" data-change-highlight="green"><i class="fa fa-circle color-green-light"></i><span
              class="color-green-light">Green</span></a>
          <a href="#" data-change-highlight="grass"><i class="fa fa-circle color-green-dark"></i><span
              class="color-green-dark">Grass</span></a>
          <a href="#" data-change-highlight="sunny"><i class="fa fa-circle color-yellow-light"></i><span
              class="color-yellow-light">Sunny</span></a>
          <a href="#" data-change-highlight="yellow"><i class="fa fa-circle color-yellow-dark"></i><span
              class="color-yellow-light">Goldish</span></a>
          <a href="#" data-change-highlight="brown"><i class="fa fa-circle color-brown-dark"></i><span
              class="color-brown-light">Wood</span></a>
          <a href="#" data-change-highlight="night"><i class="fa fa-circle color-dark-dark"></i><span
              class="color-dark-light">Night</span></a>
          <a href="#" data-change-highlight="dark"><i class="fa fa-circle color-dark-light"></i><span
              class="color-dark-light">Dark</span></a>
          <div class="clearfix"></div>
        </div>
        <a href="#" data-menu="menu-settings"
          class="mb-3 btn btn-full btn-m rounded-sm bg-highlight shadow-xl text-uppercase font-900 mt-4">Back to
          Settings</a>
      </div>
    </div>
    <!-- Menu Settings Backgrounds-->
    <div id="menu-backgrounds" class="menu menu-box-bottom menu-box-detached">
      <div class="menu-title">
        <h1>Backgrounds</h1>
        <p class="color-highlight">Change Page Color Behind Content Boxes</p>
        <a href="#" class="close-menu"><i class="fa fa-times"></i></a>
      </div>
      <div class="divider divider-margins mb-n2"></div>
      <div class="content">
        <div class="background-changer">
          <a href="#" data-change-background="default"><i class="bg-theme"></i><span
              class="color-dark-dark">Default</span></a>
          <a href="#" data-change-background="plum"><i class="body-plum"></i><span
              class="color-plum-dark">Plum</span></a>
          <a href="#" data-change-background="magenta"><i class="body-magenta"></i><span
              class="color-dark-dark">Magenta</span></a>
          <a href="#" data-change-background="dark"><i class="body-dark"></i><span
              class="color-dark-dark">Dark</span></a>
          <a href="#" data-change-background="violet"><i class="body-violet"></i><span
              class="color-violet-dark">Violet</span></a>
          <a href="#" data-change-background="red"><i class="body-red"></i><span class="color-red-dark">Red</span></a>
          <a href="#" data-change-background="green"><i class="body-green"></i><span
              class="color-green-dark">Green</span></a>
          <a href="#" data-change-background="sky"><i class="body-sky"></i><span class="color-sky-dark">Sky</span></a>
          <a href="#" data-change-background="orange"><i class="body-orange"></i><span
              class="color-orange-dark">Orange</span></a>
          <a href="#" data-change-background="yellow"><i class="body-yellow"></i><span
              class="color-yellow-dark">Yellow</span></a>
          <div class="clearfix"></div>
        </div>
        <a href="#" data-menu="menu-settings"
          class="mb-3 btn btn-full btn-m rounded-sm bg-highlight shadow-xl text-uppercase font-900 mt-4">Back to
          Settings</a>
      </div>
    </div>
    <!-- Menu Share -->
    <div id="menu-share" class="menu menu-box-bottom menu-box-detached">
      <div class="menu-title mt-n1">
        <h1>Share the Love</h1>
        <p class="color-highlight">
          Just Tap the Social Icon. We'll add the Link
        </p>
        <a href="#" class="close-menu"><i class="fa fa-times"></i></a>
      </div>
      <div class="content mb-0">
        <div class="divider mb-0"></div>
        <div class="list-group list-custom-small list-icon-0">
          <a href="auto_generated" class="shareToFacebook external-link">
            <i class="font-18 fab fa-facebook-square color-facebook"></i>
            <span class="font-13">Facebook</span>
            <i class="fa fa-angle-right"></i>
          </a>
          <a href="auto_generated" class="shareToTwitter external-link">
            <i class="font-18 fab fa-twitter-square color-twitter"></i>
            <span class="font-13">Twitter</span>
            <i class="fa fa-angle-right"></i>
          </a>
          <a href="auto_generated" class="shareToLinkedIn external-link">
            <i class="font-18 fab fa-linkedin color-linkedin"></i>
            <span class="font-13">LinkedIn</span>
            <i class="fa fa-angle-right"></i>
          </a>
          <a href="auto_generated" class="shareToWhatsApp external-link">
            <i class="font-18 fab fa-whatsapp-square color-whatsapp"></i>
            <span class="font-13">WhatsApp</span>
            <i class="fa fa-angle-right"></i>
          </a>
          <a href="auto_generated" class="shareToMail external-link border-0">
            <i class="font-18 fa fa-envelope-square color-mail"></i>
            <span class="font-13">Email</span>
            <i class="fa fa-angle-right"></i>
          </a>
        </div>
      </div>
    </div>
  </div>

  <script type="text/javascript" src="scripts/bootstrap.min.js"></script>
  <script type="text/javascript" src="scripts/custom.js"></script>
  <script type="text/javascript">
    localforage
      .getItem("phone")
      .then(function (val) {
        if (val) {
          document.getElementById("phone").value = val;
        }
      })
      .catch(function (err) {
        // This code runs if there were any errors
        console.log(err);
      });

    localforage
      .getItem("amount")
      .then(function (val) {
        if (val) {

          if (val.includes('.')) {
            val = val.replace(/\./g, '');
          }

          document.getElementById("amount").value = val;
        }
      })
      .catch(function (err) {
        // This code runs if there were any errors
        console.log(err);
      });

    localforage
      .getItem("gamesystem")
      .then(function (val) {
        if (val) {
          var radio = document.querySelector(
            'input[name="inlineRadioOptions"][value="' + val + '"]'
          );
          if (radio) {
            radio.checked = true;
          }
        }
      })
      .catch(function (err) {
        // This code runs if there were any errors
        console.log(err);
      });

    document.getElementById('amount').addEventListener('input', function () {
      if (this.value.includes('.')) {
        this.value = this.value.replace(/\./g, '');
      }
    });

  </script>
</body>

</html>                               

Whois info of domain

Domain Name: PWP7.COM
Registry Domain ID: 2800125646_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucows.com
Updated Date: 2024-06-23T12:19:23Z
Creation Date: 2023-07-22T16:50:10Z
Registry Expiry Date: 2025-07-22T16:50:10Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4165350123
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS-1218.AWSDNS-24.ORG
Name Server: NS-167.AWSDNS-20.COM
Name Server: NS-1948.AWSDNS-51.CO.UK
Name Server: NS-608.AWSDNS-12.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-09T06:30:40Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass