https://app.sandbox.midtrans.com/payment-links/3aff8ecc-af5d-446f-95d9-82a0aca76098

Submitted URL:
https://app.sandbox.midtrans.com/payment-links/3aff8ecc-af5d-446f-95d9-82a0aca76098
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Console log messages · 2 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://app.sandbox.midtrans.com/payment-links/3aff8ecc-af5d-446f-95d9-82a0aca76098
Text
Failed to load resource: the server responded with a status of 404 (Not Found)
errornetwork
URL
https://app.sandbox.midtrans.com/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 (Not Found)

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
  <base href="https://app.sandbox.midtrans.com/payment-links/">
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <link href="https://fonts.googleapis.com/css?family=Poppins:400,500" rel="stylesheet">
  <title>Transaction Expired</title>
  <style>
    * {
      box-sizing: border-box;
    }

    body {
      font-size: 16px;
      background-image: url('assets/bg.jpg');
      font-family: "Poppins", Helvetica, Arial, sans-serif;
    }

    h1,
    p {
      margin: 0;
    }

    .error-container {
      width: 100%;
      height: 100%;
      display: block;
      position: fixed;
      overflow: hidden;
      border-radius: 5px;
      background-color: #f2f2f2;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);

      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }

    @media screen and (min-width: 568px) {
      .error-container {
        max-width: 420px;
        max-height: 640px;
      }
    }

    .error-container__warning {
      background-color: #FEE1E7;
      height: 75%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;
      padding: 0 16px;
    }

    .error-container__warning img {
      margin-bottom: 16px;
    }

    .error-container__warning hr {
      width: 33px;
      border: 2px solid #F3536B;
      margin: 16px 0;
    }

    .error-container__warning .warning-title {
      font-weight: 500;
      font-size: 16px;
      line-height: 22px;
      color: #2D2E34;
    }

    .error-container__warning .warning-desc {
      font-weight: 400;
      font-size: 16px;
      line-height: 22px;
      color: #4F515C;
    }

    .error-container__info {
      height: 25%;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding: 28px 0;
    }

    .error-container__info p {
      font-weight: 500;
      font-size: 14px;
      line-height: 19px;
      color: #2D2E34;
    }
  </style>
</head>

<body>
  <div class="error-container">
    <div class="error-container__warning">
      <img src="assets/error.svg" alt="error" height="40" width="40">
      <p class="warning-title">Your transaction has been expired</p>
      <hr>
      <p class="warning-desc">
        Can't use this payment link anymore because the transaction is already expired.
      </p>
    </div>
    <div class="error-container__info">
      <p>You can now close this page</p>
    </div>
  </div>



</body></html>