diff options
author | Byron Jones <glob@mozilla.com> | 2015-11-23 07:46:59 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-11-23 07:46:59 +0100 |
commit | 14bb07ab010b0e38e6afb6d1f7976819477f396b (patch) | |
tree | 02e0b79301396a628ba609d9bfd5d05f4b55a2ff /template/en/default/mfa | |
parent | 94800e1e2badeb0d10960cad12ca595e649674d6 (diff) | |
download | bugzilla-14bb07ab010b0e38e6afb6d1f7976819477f396b.tar.gz bugzilla-14bb07ab010b0e38e6afb6d1f7976819477f396b.tar.xz |
Bug 1225366 - allow duo authentication for users already enrolled with duo
Diffstat (limited to 'template/en/default/mfa')
-rw-r--r-- | template/en/default/mfa/duo/not_enrolled.html.tmpl | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/template/en/default/mfa/duo/not_enrolled.html.tmpl b/template/en/default/mfa/duo/not_enrolled.html.tmpl new file mode 100644 index 000000000..f6a594dc2 --- /dev/null +++ b/template/en/default/mfa/duo/not_enrolled.html.tmpl @@ -0,0 +1,60 @@ +[%# 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/. + # + # This Source Code Form is "Incompatible With Secondary Licenses", as + # defined by the Mozilla Public License, v. 2.0. + #%] + +[% js = BLOCK %] + + $(function() { + $('#return') + .click(function(event) { + event.preventDefault(); + window.history.back(); + }); + }); + +[% END %] + +[% css = BLOCK %] + + #duo_container { + background: #fff; + padding: 10px; + margin-bottom: 1em; + } + +[% END %] + +[% + INCLUDE global/header.html.tmpl + title = "Duo Security Not Available" + style = css + javascript = js +%] + +<h1>You have not enrolled in Duo Security</h1> + +<div id="duo_container"> + <p> + The email address <b>[% email FILTER html %]</b> is not enrolled in Duo Security on + <a href="https://login.mozilla.com/" target="_blank">login.mozilla.com</a>. + </p> + + <p> + Please ensure you are using your Mozilla LDAP username, and that you have + completed the <a href="https://mana.mozilla.org/wiki/display/SD/DuoSecurity" target="_blank"> + Duo Security enrollment process</a>. + </p> + + <p> + Duo Security MFA may not yet be available for your Mozilla account.<br> + Contact End User Services / ServiceDesk for more information. + </p> +</div> + +<button type="button" id="return">Return</button> + +[% INCLUDE global/footer.html.tmpl %] |