summaryrefslogtreecommitdiffstats
path: root/security/manager/pki/resources/content/clientauthask.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'security/manager/pki/resources/content/clientauthask.xhtml')
-rw-r--r--security/manager/pki/resources/content/clientauthask.xhtml116
1 files changed, 116 insertions, 0 deletions
diff --git a/security/manager/pki/resources/content/clientauthask.xhtml b/security/manager/pki/resources/content/clientauthask.xhtml
new file mode 100644
index 0000000000..717dec5670
--- /dev/null
+++ b/security/manager/pki/resources/content/clientauthask.xhtml
@@ -0,0 +1,116 @@
+<?xml version="1.0"?>
+<!-- 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 window>
+
+<window
+ data-l10n-id="client-auth-window"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:html="http://www.w3.org/1999/xhtml"
+ onload="onLoad();"
+>
+ <dialog
+ id="certAuthAsk"
+ buttons="accept,cancel"
+ buttonidcancel="client-auth-send-no-certificate"
+ >
+ <linkset>
+ <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
+ <html:link
+ rel="stylesheet"
+ href="chrome://pippki/content/clientauthask.css"
+ />
+
+ <html:link rel="localization" href="security/pippki/pippki.ftl" />
+ </linkset>
+
+ <stringbundleset id="stringbundleset">
+ <stringbundle
+ id="pippki_bundle"
+ src="chrome://pippki/locale/pippki.properties"
+ />
+ </stringbundleset>
+
+ <script src="chrome://pippki/content/pippki.js" />
+ <script src="chrome://pippki/content/clientauthask.js" />
+ <script src="chrome://global/content/globalOverlay.js" />
+ <script src="chrome://global/content/editMenuOverlay.js" />
+
+ <description
+ class="important"
+ id="clientAuthSiteIdentification"
+ data-l10n-id="client-auth-site-identification"
+ data-l10n-args='{"hostname":""}'
+ ></description>
+
+ <!-- The items in this menulist must never be sorted,
+ but remain in the order filled by the application
+-->
+ <menulist id="nicknames" oncommand="onCertSelected();" native="true">
+ <menupopup />
+ </menulist>
+
+ <description
+ class="important"
+ data-l10n-id="client-auth-cert-details"
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsIssuedTo"
+ class="details"
+ data-l10n-id="client-auth-cert-details-issued-to"
+ data-l10n-args='{"issuedTo":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsSerialNumber"
+ class="details"
+ data-l10n-id="client-auth-cert-details-serial-number"
+ data-l10n-args='{"serialNumber":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsValidityPeriod"
+ class="details"
+ data-l10n-id="client-auth-cert-details-validity-period"
+ data-l10n-args='{"notBefore":"","notAfter":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsKeyUsages"
+ class="details"
+ data-l10n-id="client-auth-cert-details-key-usages"
+ data-l10n-args='{"keyUsages":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsEmailAddresses"
+ class="details"
+ data-l10n-id="client-auth-cert-details-email-addresses"
+ data-l10n-args='{"emailAddresses":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsIssuedBy"
+ class="details"
+ data-l10n-id="client-auth-cert-details-issued-by"
+ data-l10n-args='{"issuedBy":""}'
+ ></description>
+
+ <description
+ id="clientAuthCertDetailsStoredOn"
+ class="details"
+ data-l10n-id="client-auth-cert-details-stored-on"
+ data-l10n-args='{"storedOn":""}'
+ ></description>
+
+ <checkbox
+ id="rememberBox"
+ data-l10n-id="client-auth-cert-remember-box"
+ checked="true"
+ native="true"
+ />
+ </dialog>
+</window>