<!DOCTYPE html>
<html lang="id">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title><%= typeof title !== 'undefined' && title ? title : 'Verifikasi' %> | Yonpedia</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  <link rel="stylesheet" href="/css/style.css">
</head>
<body>
  <div class="grid-bg"></div>
  <header>
    <div class="container navbar">
      <a href="/" class="logo">
        <div class="logo-icon">YM</div>
        <div class="logo-text">Yon<span>Media</span> <span class="gold">VIP</span></div>
      </a>
    </div>
  </header>

  <main style="flex:1; display:flex; align-items:center; justify-content:center; min-height:calc(100vh - 200px);">
    <section class="form-container">
      <h2 class="form-title"><%= typeof title !== 'undefined' && title ? title : 'Masukkan Kode Verifikasi' %></h2>
      <p class="form-subtitle">Kode telah dikirim ke WhatsApp Anda.</p>
      <% if (typeof debugCode !== 'undefined' && debugCode) { %>
        <div class="alert alert-success" style="margin-bottom:15px;">
          <i class="fa-solid fa-circle-info"></i> Mode testing: kode verifikasi <strong><%= debugCode %></strong>
        </div>
      <% } %>
      <form action="/auth/verify" method="POST">
        <input type="hidden" name="uid" value="<%= uid %>">
        <input type="hidden" name="redirect" value="<%= typeof redirect !== 'undefined' ? redirect : '' %>">
        <input type="hidden" name="flow" value="<%= typeof flow !== 'undefined' ? flow : 'login' %>">
        <div class="form-group">
          <label class="form-label" for="code">Kode Verifikasi</label>
          <input type="text" id="code" name="code" class="form-input" placeholder="6 digit code" required>
        </div>
        <button type="submit" class="btn btn-primary form-btn">Verifikasi</button>
      </form>
      <% if (typeof error !== 'undefined') { %>
        <div class="alert alert-danger" style="margin-top:15px;">
          <i class="fa-solid fa-triangle-exclamation"></i> <%= error %>
        </div>
      <% } %>
    </section>
  </main>

  <footer>
    <div class="container">
      <p>&copy; 2026 Yonpedia VIP. All Rights Reserved.</p>
    </div>
  </footer>
  <script src="/js/main.js"></script>
</body>
</html>
