diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-05-19 03:13:54 +0200 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-05-19 03:13:54 +0200 |
commit | 3703e72073f17faf200545202d9f68f768857951 (patch) | |
tree | 2199dba514c4c6fea04006387b2ea998090013a8 /g4f/gui/client/index.html | |
parent | Fix js error in gui, Revert to_image in gui (diff) | |
download | gpt4free-3703e72073f17faf200545202d9f68f768857951.tar gpt4free-3703e72073f17faf200545202d9f68f768857951.tar.gz gpt4free-3703e72073f17faf200545202d9f68f768857951.tar.bz2 gpt4free-3703e72073f17faf200545202d9f68f768857951.tar.lz gpt4free-3703e72073f17faf200545202d9f68f768857951.tar.xz gpt4free-3703e72073f17faf200545202d9f68f768857951.tar.zst gpt4free-3703e72073f17faf200545202d9f68f768857951.zip |
Diffstat (limited to 'g4f/gui/client/index.html')
-rw-r--r-- | g4f/gui/client/index.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/g4f/gui/client/index.html b/g4f/gui/client/index.html index d3cddd3c..3c428f38 100644 --- a/g4f/gui/client/index.html +++ b/g4f/gui/client/index.html @@ -93,6 +93,11 @@ <div class="paper"> <h3>Settings</h3> <div class="field"> + <span class="label">Enable Dark Mode</span> + <input type="checkbox" id="darkMode" checked /> + <label for="darkMode" class="toogle" title=""></label> + </div> + <div class="field"> <span class="label">Web Access with DuckDuckGo</span> <input type="checkbox" id="switch" /> <label for="switch" class="toogle" title="Add the pages of the first 5 search results to the query."></label> @@ -169,8 +174,11 @@ </div> </div> <div class="conversation"> - <textarea id="systemPrompt" class="box" placeholder="System prompt"></textarea> + <textarea id="systemPrompt" class="box" placeholder="System prompt"></textarea> <div id="messages" class="box"></div> + <button class="slide-systemPrompt"> + <i class="fa-solid fa-angles-up"></i> + </button> <div class="toolbar"> <div id="input-count" class=""> <button class="hide-input"> |