index.html

1.18 KB
25/07/2025 13:10
HTML
<!DOCTYPE html>
<html lang="th">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>เข้าสู่ระบบ | ระบบประเมินผล</title>
  <link rel="stylesheet" href="style.css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>

<body>
  <div class="login-container">
    <form class="login-form" id="loginForm">
      <h1>ระบบประเมินผล</h1>
      <p>กรุณาเข้าสู่ระบบเพื่อใช้งาน</p>
      <div class="input-group">
        <i class="fas fa-user"></i>
        <input type="text" id="username" placeholder="ชื่อผู้ใช้งาน" required>
      </div>
      <div class="input-group">
        <i class="fas fa-lock"></i>
        <input type="password" id="password" placeholder="รหัสผ่าน" required>
      </div>
      <button type="submit">เข้าสู่ระบบ</button>
      <a href="#" class="forgot-password">ลืมรหัสผ่าน?</a>
    </form>
  </div>

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

</html>