tor-browser

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

editAddress.xhtml (1438B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <!DOCTYPE html>
      6 <html xmlns="http://www.w3.org/1999/xhtml">
      7  <head>
      8    <title data-l10n-id="autofill-add-address-title"></title>
      9    <meta http-equiv="Content-Security-Policy" content="default-src chrome:" />
     10    <link rel="localization" href="browser/preferences/formAutofill.ftl" />
     11    <link
     12      rel="stylesheet"
     13      href="chrome://formautofill/content/skin/editDialog-shared.css"
     14    />
     15    <link
     16      rel="stylesheet"
     17      href="chrome://formautofill/content/skin/editAddress.css"
     18    />
     19    <script
     20      type="module"
     21      src="chrome://global/content/elements/moz-button-group.mjs"
     22    ></script>
     23    <script
     24      type="module"
     25      src="chrome://formautofill/content/editAddress.mjs"
     26    ></script>
     27  </head>
     28  <body>
     29    <form id="form" class="editAddressForm" autocomplete="off"></form>
     30    <div id="controls-container">
     31      <span
     32        id="country-warning-message"
     33        data-l10n-id="autofill-country-warning-message"
     34      />
     35      <moz-button-group>
     36        <button id="cancel" data-l10n-id="autofill-cancel-button" />
     37        <button id="save" class="primary" data-l10n-id="autofill-save-button" />
     38      </moz-button-group>
     39    </div>
     40  </body>
     41 </html>