diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-29 14:44:51 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-29 14:44:51 +0100 |
commit | 3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b (patch) | |
tree | afe2fd00ba7ef0abebce7d80f1d4d5568a3b7195 /g4f/gui/client/html | |
parent | Add websocket support in OpenaiChat (diff) | |
download | gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar.gz gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar.bz2 gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar.lz gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar.xz gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.tar.zst gpt4free-3b96c27e3c7483f63d758d056ec5f0cd2fde0f8b.zip |
Diffstat (limited to 'g4f/gui/client/html')
-rw-r--r-- | g4f/gui/client/html/index.html | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/g4f/gui/client/html/index.html b/g4f/gui/client/html/index.html index 9ef8a820..96829b2c 100644 --- a/g4f/gui/client/html/index.html +++ b/g4f/gui/client/html/index.html @@ -112,19 +112,23 @@ </div> </div> <div class="conversation"> - <div class="stop_generating stop_generating-hidden"> - <button id="cancelButton"> - <span>Stop Generating</span> - <i class="fa-regular fa-stop"></i> - </button> - </div> - <div class="regenerate regenerate-hidden"> - <button id="regenerateButton"> - <span>Regenerate</span> - <i class="fa-solid fa-rotate"></i> - </button> - </div> - <div class="box" id="messages"> + <div id="messages" class="box"></div> + <div class="toolbar"> + <div id="input-count" class=""> + + </div> + <div class="stop_generating stop_generating-hidden"> + <button id="cancelButton"> + <span>Stop Generating</span> + <i class="fa-regular fa-stop"></i> + </button> + </div> + <div class="regenerate regenerate-hidden"> + <button id="regenerateButton"> + <span>Regenerate</span> + <i class="fa-solid fa-rotate"></i> + </button> + </div> </div> <div class="user-input"> <div class="box input-box"> |