View | Details | Raw Unified | Return to bug 34028
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/auth-two-factor.inc (-2 / +2 lines)
Lines 4-11 Link Here
4
            <p>We recommend cloud-based mobile authenticator apps such as Authy, Duo Mobile, and LastPass. They can restore access if you lose your hardware device.</p>
4
            <p>We recommend cloud-based mobile authenticator apps such as Authy, Duo Mobile, and LastPass. They can restore access if you lose your hardware device.</p>
5
            <p>Can't scan the code?</p>
5
            <p>Can't scan the code?</p>
6
            <p>To add the entry manually, provide the following details to the application on your phone.</p>
6
            <p>To add the entry manually, provide the following details to the application on your phone.</p>
7
            <p>Account: <span id="issuer">[% issuer | html %]</span></p>
7
            <p>Account: "<span id="issuer">[% issuer | html %]</span>: <span id="key_id">[% key_id | html %]</span>"</p>
8
            <p>Key: <span id="key_id">"[% key_id | html %]</span></p>
8
            <p>Key: "<span id="key_secret">[% secret32 | html %]</span>"</p>
9
            <p>Time based: Yes</p>
9
            <p>Time based: Yes</p>
10
        </div>
10
        </div>
11
11
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/two_factor_auth.tt (-1 / +1 lines)
Lines 100-105 Link Here
100
                        $("#secret32").val(data.secret32);
100
                        $("#secret32").val(data.secret32);
101
                        $("#issuer").html(data.issuer);
101
                        $("#issuer").html(data.issuer);
102
                        $("#key_id").html(data.key_id);
102
                        $("#key_id").html(data.key_id);
103
                        $("#key_secret").html(data.secret32);
103
                        $("#registration-form").show();
104
                        $("#registration-form").show();
104
                        $("#registration-status").hide();
105
                        $("#registration-status").hide();
105
                    },
106
                    },
106
- 

Return to bug 34028