options.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Dify Chatbot Extension</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="./tailwind.css" rel="stylesheet">
  7. </head>
  8. <body class="bg-gray-100 py-4 px-4 w-128">
  9. <div class="max-w-md mx-auto bg-white shadow-md rounded-lg p-4">
  10. <h2 class="text-2xl font-semibold mb-4">Dify Chatbot Extension</h2>
  11. <form>
  12. <div class="mb-4 flex items-center">
  13. <div class="w-1/4">
  14. <label for="chatbot-url" class="block font-semibold text-gray-700">ChatBot URL</label>
  15. </div>
  16. <div class="w-3/4">
  17. <input type="text" id="chatbot-url" name="base-url" value=""
  18. class="w-full border border-gray-300 rounded px-3 py-2 focus:outline-none focus:border-blue-400"
  19. placeholder="https://udify.app/chatbot/7CQBa5yyvYLSkZtx">
  20. </div>
  21. </div>
  22. <div class="mb-4 flex items-center">
  23. <div class="w-1/4"></div>
  24. <div class="w-3/4">
  25. <span id="error-tip" class="text-red-600"></span>
  26. </div>
  27. </div>
  28. <div class="mb-4 flex items-center">
  29. <div class="w-1/4"></div>
  30. <div class="w-3/4">
  31. <button id="save-button"
  32. class="bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600 focus:outline-none focus:bg-blue-600">Save</button>
  33. </div>
  34. </div>
  35. </form>
  36. </div>
  37. <script src="options.js"></script>
  38. </body>
  39. </html>