new-profile.html (1157B)
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 chrome:; object-src 'none'; img-src blob: chrome:;" 11 /> 12 13 <link id="favicon" rel="icon" type="image/svg+xml" /> 14 15 <link rel="localization" href="branding/brand.ftl" /> 16 <link rel="localization" href="browser/profiles.ftl" /> 17 18 <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" /> 19 <link 20 rel="stylesheet" 21 href="chrome://browser/content/profiles/edit-profile-card.css" 22 /> 23 24 <script 25 type="module" 26 src="chrome://browser/content/profiles/new-profile-card.mjs" 27 ></script> 28 29 <script src="chrome://browser/content/contentTheme.js"></script> 30 31 <title data-l10n-id="new-profile-page-title"></title> 32 </head> 33 34 <body> 35 <new-profile-card></new-profile-card> 36 </body> 37 </html>