privateuserh commited on
Commit
97a8031
·
verified ·
1 Parent(s): e54ecc4

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +21 -0
index.html CHANGED
@@ -472,5 +472,26 @@
472
  }
473
  });
474
  </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
  </body>
476
  </html>
 
472
  }
473
  });
474
  </script>
475
+ <div class="modal-overlay" id="loginModal">
476
+ <div class="modal-content">
477
+ <h3>Partner Access</h3>
478
+ <form id="loginForm">
479
+ <div class="input-group">
480
+ <label for="uniqueId">Unique Partner ID</label>
481
+ <input type="text" id="uniqueId" required>
482
+ </div>
483
+
484
+ <div class="cf-turnstile" data-sitekey="YOUR_SITE_KEY_HERE"></div>
485
+ <div class="form-actions">
486
+ <button type="submit" class="btn-submit">Login</button>
487
+ </div>
488
+ </form>
489
+ </div>
490
+ </div>
491
+
492
+ <div id="welcome" class="welcome-message" style="display: none;">
493
+ Welcome, <span id="partnerName"></span>!
494
+ <button id="logoutBtn" class="logout-btn">Log Out</button>
495
+ </div>
496
  </body>
497
  </html>