1
0
Fork 0
firefox/browser/extensions/formautofill/content/editAddress.xhtml
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

41 lines
1.4 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title data-l10n-id="autofill-add-address-title"></title>
<meta http-equiv="Content-Security-Policy" content="default-src chrome:" />
<link rel="localization" href="browser/preferences/formAutofill.ftl" />
<link
rel="stylesheet"
href="chrome://formautofill/content/skin/editDialog-shared.css"
/>
<link
rel="stylesheet"
href="chrome://formautofill/content/skin/editAddress.css"
/>
<script
type="module"
src="chrome://global/content/elements/moz-button-group.mjs"
></script>
<script
type="module"
src="chrome://formautofill/content/editAddress.mjs"
></script>
</head>
<body>
<form id="form" class="editAddressForm" autocomplete="off"></form>
<div id="controls-container">
<span
id="country-warning-message"
data-l10n-id="autofill-country-warning-message"
/>
<moz-button-group>
<button id="cancel" data-l10n-id="autofill-cancel-button" />
<button id="save" class="primary" data-l10n-id="autofill-save-button" />
</moz-button-group>
</div>
</body>
</html>