https://pipecdn.app/signup?ref=Y2xvbmVjYW

URL inviato:
https://t.co/M4Gdbf8TGm
Report terminato:
LinkTesto
https://twitter.com/pipenetwork@pipenetwork

Variabili JavaScript · 28 trovate

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
gtagfunction
dataLayerobject
setupFormTogglefunction
toggleFormsfunction
setupFormHandlersfunction
handleSignupfunction
showModalfunction

Messaggi di log della console · 6 trovati

TipoCategoriaLog
logother
URL
https://pipecdn.app/app.js?v=202411221230
Testo
Checking token:
logother
URL
https://pipecdn.app/app.js?v=202411221230
Testo
No token found, showing auth section
logother
URL
https://pipecdn.app/app.js?v=202411221230
Testo
Showing auth section
verbosedom
URL
https://pipecdn.app/signup?ref=Y2xvbmVjYW
Testo
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://pipecdn.app/signup?ref=Y2xvbmVjYW
Testo
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o
verbosedom
URL
https://pipecdn.app/signup?ref=Y2xvbmVjYW
Testo
[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) %o

HTML

<!DOCTYPE html><html lang="en"><head>
  <!-- Google tag (gtag.js) -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-M891WLDDV1"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-M891WLDDV1');
</script>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Pipe Network Web App</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="main-container">
        <img src="icon48.png" alt="Pipe Network Logo" class="logo">

    <h1 class="heading">Pipe Network Guardian Dashboard</h1>

    <!-- Authentication Section -->
    <div id="auth-section" style="display: block;">
      <!-- Tabs to Switch Between Login and Sign Up -->
      <div class="tab-container">
        <button class="tab-btn active" id="signup-tab">Sign Up</button>
        <button class="tab-btn" id="login-tab">Login</button>
      </div>

      <!-- Sign Up Form -->
      <form id="signup-form" class="form active">
        <input type="email" id="signup-email" placeholder="Email" required="">
        <input type="password" id="signup-password" placeholder="Password" required="">
        <input type="text" id="referral-code" placeholder="Referral Code (Optional)">
        <button type="submit" class="primary-btn">Sign Up</button>
      </form>

      <!-- Login Form -->
      <form id="login-form" class="form">
        <input type="email" id="login-email" placeholder="Email" required="">
        <input type="password" id="login-password" placeholder="Password" required="">
        <button type="submit" class="primary-btn">Login</button>
        <a href="#" id="reset-password-button" class="secondary-link">Forgot Password?</a>
      </form>
    </div>

    <!-- Reset Password Section (Initially Hidden) -->
    <div id="reset-password-section" class="form" style="display: none;">
      <h3>Reset Password</h3>
      <form id="reset-form">
        <input type="email" id="reset-email" placeholder="Enter your email" required="">
        <button type="submit" class="primary-btn mt10">Request Reset</button>
      </form>

<form id="reset-password-form" style="display: none;" onsubmit="handlePasswordReset(event)">
  <input type="text" id="reset-token" placeholder="Reset Token" required="">
  <input type="password" id="new-password" placeholder="New Password" required="">
  <button type="submit" class="primary-btn">Reset Password</button>
</form>

    </div>

<!-- Dashboard Section -->
<div id="dashboard" style="display: none;" class="dashboard-container">
  <h2 class="dashboard-header">Welcome to Your Dashboard</h2>
  <div class="points-section">
    <span>You have earned</span>
    <div class="points-board">
      <p id="points-display" class="points">0</p>
      <span class="points-label">Points</span>
    </div>
  </div>
  <button id="logout-button" class="primary-btn">Logout</button>
  
  <div class="referral-section">
    <button id="generate-referral-button" class="primary-btn">Generate Referral</button>
    <p id="referral-link"></p>
  </div>
  
  <!-- Leaderboard Link -->
  <!-- <a href="leaderboard.html" id="leaderboard-link" class="secondary-link">View Leaderboard</a> -->
  
  <!-- Twitter Follow Section -->
  <div id="twitter-follow-section" class="twitter-section">
    <p class="description">Follow <a href="https://twitter.com/pipenetwork" class="twitter-follow-button" data-show-count="false">@pipenetwork</a> on X</p>
    <span class="tooltip">Click to follow and earn points</span>
    <button id="twitter-button" type="button" class="primary-btn twitter">Follow @pipenetwork</button>
  </div>
  <div id="twitter-followed-section" class="twitter-section">
    <p class="description">Thank you for following <a href="https://twitter.com/pipenetwork" class="twitter-follow-button" data-show-count="false">@pipenetwork</a>.</p>
    <span class="tooltip" id="twitter-followed-text"></span>
  </div>
</div>
</div>

    <!-- Footer Section -->
    <footer class="footer">
      <a href="terms.html" class="secondary-link">Terms of Service</a>
      <a href="privacy.html" class="secondary-link">Privacy Policy</a>
      <a href="support.html" class="secondary-link">Support</a>
    </footer>
  

  <div id="signup-success-modal" class="modal" style="display: none;">
    <div class="modal-content">
      <span class="close-button">×</span>
      <p>You are registered and now ready to log in!</p>
    </div>
  </div>

<script src="app.js?v=202411221230"></script>



</body></html>