20ad0cb330
In U2F device message, removes warning style
40 lines
1.9 KiB
Text
40 lines
1.9 KiB
Text
#js-register-u2f
|
|
|
|
-# haml-lint:disable InlineJavaScript
|
|
%script#js-register-u2f-not-supported{ type: "text/template" }
|
|
%p= _("Your browser doesn't support U2F. Please use Google Chrome desktop (version 41 or newer).")
|
|
|
|
%script#js-register-u2f-setup{ type: "text/template" }
|
|
- if current_user.two_factor_otp_enabled?
|
|
.row.append-bottom-10
|
|
.col-md-4
|
|
%button#js-setup-u2f-device.btn.btn-info.btn-block= _("Set up new U2F device")
|
|
.col-md-8
|
|
%p= _("Your U2F device needs to be set up. Plug it in (if not already) and click the button on the left.")
|
|
- else
|
|
.row.append-bottom-10
|
|
.col-md-4
|
|
%button#js-setup-u2f-device.btn.btn-info.btn-block{ disabled: true }= _("Set up new U2F device")
|
|
.col-md-8
|
|
%p= _("You need to register a two-factor authentication app before you can set up a U2F device.")
|
|
|
|
%script#js-register-u2f-in-progress{ type: "text/template" }
|
|
%p= _("Trying to communicate with your device. Plug it in (if you haven't already) and press the button on the device now.")
|
|
|
|
%script#js-register-u2f-error{ type: "text/template" }
|
|
%div
|
|
%p
|
|
%span <%= error_message %> (#{_("error code:")} <%= error_code %>)
|
|
%a.btn.btn-warning#js-u2f-try-again= _("Try again?")
|
|
|
|
%script#js-register-u2f-registered{ type: "text/template" }
|
|
.row.append-bottom-10
|
|
.col-md-12
|
|
%p= _("Your device was successfully set up! Give it a name and register it with the GitLab server.")
|
|
= form_tag(create_u2f_profile_two_factor_auth_path, method: :post) do
|
|
.row.append-bottom-10
|
|
.col-md-3
|
|
= text_field_tag 'u2f_registration[name]', nil, class: 'form-control', placeholder: _("Pick a name")
|
|
.col-md-3
|
|
= hidden_field_tag 'u2f_registration[device_response]', nil, class: 'form-control', required: true, id: "js-device-response"
|
|
= submit_tag _("Register U2F device"), class: "btn btn-success"
|