← back to Wine Finder

public/login.html

51 lines

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
  <meta http-equiv="Pragma" content="no-cache">
  <meta http-equiv="Expires" content="0">
  <title>Red Thunder Wine Tracker - Login</title>
  <link rel="stylesheet" href="/css/login.css?v=999999">
</head>
<body>
  <div class="login-container">
    <div class="login-box">
      <div class="logo-section">
        <div class="logo-icon">🍷</div>
        <h1 class="app-title">Red Thunder</h1>
        <p class="app-subtitle">Wine Tracker</p>
      </div>

      <div class="divider"></div>

      <form id="loginForm" class="login-form">
        <div class="form-group">
          <label for="username">Username</label>
          <input type="text" id="username" name="username" placeholder="Enter your username" required autocomplete="username">
        </div>

        <div class="form-group">
          <label for="password">Password</label>
          <input type="password" id="password" name="password" placeholder="Enter your password" required autocomplete="current-password">
        </div>

        <div id="errorMessage" class="error-message"></div>

        <button type="submit" class="login-button">
          <span id="buttonText">Login</span>
          <span id="buttonLoader" class="loader" style="display: none;"></span>
        </button>
      </form>

      <div class="footer-text">
        Premium Wine Price Intelligence
      </div>
    </div>
  </div>

  <script src="/js/login.js"></script>
</body>
</html>