<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>Quiz Game</title>

  <link rel="stylesheet" href="style.css" />

</head>

<body>

  <div class="coin-counter">Coins: <span id="coinCount">0</span></div>

  <div id="quizContainer">

    <div id="question"></div>

    <input type="text" id="answerInput" placeholder="Your answer" />

    <button id="submitAnswer">Submit</button>

    <button id="getHint">Get Hint (-3 coins)</button>

    <div id="hintContainer"></div>

  </div>


  <div id="phoneLogin">

    <input id="phoneNumber" type="text" placeholder="+91xxxxxxxxxx" />

    <div id="recaptcha-container"></div>

    <button onclick="sendOTP()">Send OTP</button>

    <input id="otpCode" type="text" placeholder="Enter OTP" />

    <button onclick="verifyOTP()">Verify</button>

  </div>


  <script src="https://www.gstatic.com/firebasejs/10.12.0/firebase-app.js"></script>

  <script src="https://www.gstatic.com/firebasejs/10.12.0/firebase-auth.js"></script>

  <script src="https://www.gstatic.com/firebasejs/10.12.0/firebase-firestore.js"></script>

  <script src="app.js"></script>

</body>

</html>