Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

options.html 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>RagFlow option</title>
  7. <link rel="stylesheet" href="styles/options.css" />
  8. </head>
  9. <body id="ragflow">
  10. <div id="form-config">
  11. <div class="header">
  12. <img src="assets/logo-with-text.png" alt="Logo" class="logo" />
  13. </div>
  14. <div class="content">
  15. <label for="base-url">Base URL:</label>
  16. <input type="text" id="base-url" placeholder="Enter base URL" />
  17. <label for="from">From:</label>
  18. <select id="from">
  19. <option selected value="agent">agent</option>
  20. <option value="chat">chat</option>
  21. </select>
  22. <label for="auth">Auth:</label>
  23. <input type="text" id="auth" placeholder="Enter auth" />
  24. <label for="shared-id">Shared ID:</label>
  25. <input type="text" id="shared-id" placeholder="Enter shared ID" />
  26. <button id="save-config">🛖</button>
  27. </div>
  28. </div>
  29. <script src="options.js"></script>
  30. </body>
  31. </html>