tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

chat.html (2355B)


      1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this file,
      3   - You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 <!doctype html>
      5 <html xmlns="http://www.w3.org/1999/xhtml" role="document">
      6  <head>
      7    <meta charset="utf-8" />
      8    <meta
      9      http-equiv="Content-Security-Policy"
     10      content="default-src resource: chrome:; object-src 'none'; img-src data: chrome:;"
     11    />
     12    <meta name="color-scheme" content="light dark" />
     13    <title data-l10n-id="genai-chatbot-title"></title>
     14    <link rel="localization" href="branding/brand.ftl" />
     15    <link rel="localization" href="browser/newtab/onboarding.ftl" />
     16    <link rel="localization" href="browser/genai.ftl" />
     17    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     18    <link
     19      rel="stylesheet"
     20      href="chrome://browser/content/sidebar/sidebar.css"
     21    />
     22    <link
     23      rel="stylesheet"
     24      href="chrome://browser/content/aboutwelcome/aboutwelcome.css"
     25    />
     26    <link rel="stylesheet" href="chrome://browser/content/genai/chat.css" />
     27    <script src="chrome://global/content/vendor/react.js"></script>
     28    <script src="chrome://global/content/vendor/react-dom.js"></script>
     29    <script src="chrome://browser/content/contentTheme.js"></script>
     30    <script src="chrome://browser/content/genai/chat.js"></script>
     31  </head>
     32  <body>
     33    <div id="header">
     34      <select data-l10n-id="genai-header-provider-menu" id="provider"></select>
     35      <moz-button
     36        data-l10n-id="genai-header-settings-button"
     37        iconsrc="chrome://global/skin/icons/more.svg"
     38        aria-haspopup="menu"
     39        aria-expanded="false"
     40        id="header-more"
     41        type="icon ghost"
     42      ></moz-button>
     43      <moz-button
     44        data-l10n-id="genai-header-close-button"
     45        iconsrc="chrome://global/skin/icons/close.svg"
     46        id="header-close"
     47        type="icon ghost"
     48      ></moz-button>
     49    </div>
     50    <div id="message-container"></div>
     51    <div id="browser-container"></div>
     52    <div id="summarize-btn-container">
     53      <span class="badge" data-l10n-id="genai-menu-new-badge"></span>
     54      <moz-button
     55        data-l10n-id="genai-page-button-summarize"
     56        id="summarize-button"
     57        size="default"
     58      >
     59      </moz-button>
     60    </div>
     61  </body>
     62 </html>