1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Dify Chatbot Extension</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
- </head>
- <body class="bg-gray-100 py-8 px-4 w-96">
- <div class="max-w-md mx-auto bg-white shadow-md rounded-lg p-4">
- <h2 class="text-2xl font-semibold mb-4">Dify Chatbot Extension</h2>
- <form>
- <div class="mb-4 flex items-center">
- <div class="w-1/4">
- <label for="base-url" class="block font-semibold text-gray-700">Base URL</label>
- </div>
- <div class="w-3/4">
- <input type="text" id="base-url" name="base-url" value=""
- class="w-full border border-gray-300 rounded px-3 py-2 focus:outline-none focus:border-blue-400"
- placeholder="https://udify.app">
- </div>
- </div>
- <div class="mb-4 flex items-center">
- <div class="w-1/4">
- <label for="token" class="block font-semibold text-gray-700">Token</label>
- </div>
- <div class="w-3/4">
- <input type="text" id="token" name="token" value=""
- class="w-full border border-gray-300 rounded px-3 py-2 focus:outline-none focus:border-blue-400"
- placeholder="Application Embedded Token">
- </div>
- </div>
- <div class="mb-4 flex items-center">
- <div class="w-1/4"></div>
- <div class="w-3/4">
- <span id="error-tip" class="text-red-600"></span>
- </div>
- </div>
- <div class="mb-4 flex items-center">
- <div class="w-1/4"></div>
- <div class="w-3/4">
- <button id="save-button"
- class="bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600 focus:outline-none focus:bg-blue-600">Save</button>
- </div>
- </div>
- </form>
- </div>
- <script src="options.js"></script>
- </body>
- </html>
|