manageCreditCards.xhtml (1768B)
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 7 xmlns="http://www.w3.org/1999/xhtml" 8 data-l10n-id="autofill-manage-dialog" 9 data-l10n-attrs="style" 10 > 11 <head> 12 <title data-l10n-id="autofill-manage-payment-methods-title"></title> 13 <meta 14 http-equiv="Content-Security-Policy" 15 content="default-src chrome:; style-src chrome: 'unsafe-inline';" 16 /> 17 <link rel="localization" href="browser/preferences/formAutofill.ftl" /> 18 <link rel="localization" href="toolkit/formautofill/formAutofill.ftl" /> 19 <link rel="localization" href="toolkit/payments/payments.ftl" /> 20 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 21 <link 22 rel="stylesheet" 23 href="chrome://formautofill/content/manageDialog.css" 24 /> 25 <script 26 type="module" 27 src="chrome://formautofill/content/manageCreditCards.mjs" 28 ></script> 29 </head> 30 <body> 31 <fieldset> 32 <legend data-l10n-id="autofill-manage-cards-list-header" /> 33 <select id="credit-cards" size="9" multiple="multiple" /> 34 </fieldset> 35 <div id="controls-container"> 36 <button 37 id="remove" 38 disabled="disabled" 39 data-l10n-id="autofill-manage-remove-button" 40 /> 41 <!-- Wrapper is used to properly compute the search tooltip position --> 42 <div> 43 <button id="add" data-l10n-id="autofill-manage-add-button" /> 44 </div> 45 <button 46 id="edit" 47 disabled="disabled" 48 data-l10n-id="autofill-manage-edit-button" 49 /> 50 </div> 51 </body> 52 </html>