gitlab-org--gitlab-foss/app/views/profiles/two_factor_auths/_codes.html.haml

14 lines
709 B
Plaintext
Raw Normal View History

%p.slead
- lose_2fa_message = _('Should you ever lose your phone or access to your one time password secret, each of these recovery codes can be used one time each to regain access to your account. Please save them in a safe place, or you %{b_start}will%{b_end} lose access to your account.') % { b_start:'<b>', b_end:'</b>' }
= lose_2fa_message.html_safe
.codes.card
%ul
- @codes.each do |code|
%li
2015-05-04 18:09:45 +00:00
%span.monospace= code
2018-09-17 15:59:21 +00:00
.d-flex
= link_to _('Proceed'), profile_account_path, class: 'btn btn-success append-right-10'
= link_to _('Download codes'), "data:text/plain;charset=utf-8,#{CGI.escape(@codes.join("\n"))}", download: "gitlab-recovery-codes.txt", class: 'btn btn-default'