fork download
  1. <!DOCTYPE html>
  2. <html lang="th">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>หน้าล็อกอิน</title>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <div class="login-container">
  11. <h2>ล็อกอิน</h2>
  12. <form id="loginForm">
  13. <div class="input-group">
  14. <label for="username">ชื่อผู้ใช้:</label>
  15. <input type="text" id="username" name="username" required>
  16. </div>
  17. <div class="input-group">
  18. <label for="password">รหัสผ่าน:</label>
  19. <input type="password" id="password" name="password" required>
  20. </div>
  21. <button type="submit">ล็อกอิน</button>
  22. </form>
  23. <p>ยังไม่มีบัญชี? <a href="#">สมัครสมาชิก</a></p>
  24. </div>
  25. </body>
  26. </html>
Success #stdin #stdout 0.03s 25796KB
stdin
Standard input is empty
stdout
<!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="styles.css">
</head>
<body>
    <div class="login-container">
        <h2>ล็อกอิน</h2>
        <form id="loginForm">
            <div class="input-group">
                <label for="username">ชื่อผู้ใช้:</label>
                <input type="text" id="username" name="username" required>
            </div>
            <div class="input-group">
                <label for="password">รหัสผ่าน:</label>
                <input type="password" id="password" name="password" required>
            </div>
            <button type="submit">ล็อกอิน</button>
        </form>
        <p>ยังไม่มีบัญชี? <a href="#">สมัครสมาชิก</a></p>
    </div>
</body>
</html>