Commit 08a12f24 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Make user settings account page nicer

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent d0d596ae
...@@ -84,8 +84,9 @@ ...@@ -84,8 +84,9 @@
} }
.btn { .btn {
line-height: 36px; line-height: 40px;
height: 56px; height: 42px;
padding: 0px 12px;
img { img {
width: 32px; width: 32px;
......
...@@ -26,20 +26,23 @@ ...@@ -26,20 +26,23 @@
- if current_user.private_token - if current_user.private_token
= text_field_tag "token", current_user.private_token, class: "form-control" = text_field_tag "token", current_user.private_token, class: "form-control"
%div %div
= f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-primary btn-build-token" = f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-default btn-build-token"
- else - else
%span You don`t have one yet. Click generate to fix it. %span You don`t have one yet. Click generate to fix it.
= f.submit 'Generate', class: "btn success btn-build-token" = f.submit 'Generate', class: "btn btn-default btn-build-token"
- unless current_user.ldap_user? - unless current_user.ldap_user?
- if current_user.otp_required_for_login .panel.panel-default
.panel.panel-success .panel-heading
.panel-heading Two-factor Authentication
Two-factor Authentication enabled .panel-body
.panel-body - if current_user.otp_required_for_login
.pull-right .pull-right
= link_to 'Disable Two-factor Authentication', profile_two_factor_auth_path, method: :delete, class: 'btn btn-close btn-sm', = link_to 'Disable Two-factor Authentication', profile_two_factor_auth_path, method: :delete, class: 'btn btn-close btn-sm',
data: { confirm: 'Are you sure?' } data: { confirm: 'Are you sure?' }
%p.text-success
%strong
Two-factor Authentication is enabled
%p %p
If you lose your recovery codes you can If you lose your recovery codes you can
%strong %strong
...@@ -47,11 +50,7 @@ ...@@ -47,11 +50,7 @@
= link_to 'generate new ones', codes_profile_two_factor_auth_path, method: :post, data: { confirm: 'Are you sure?' } = link_to 'generate new ones', codes_profile_two_factor_auth_path, method: :post, data: { confirm: 'Are you sure?' }
invalidating all previous codes. invalidating all previous codes.
- else - else
.panel.panel-default
.panel-heading
Two-factor Authentication
.panel-body
%p %p
Increase your account's security by enabling two-factor authentication (2FA). Increase your account's security by enabling two-factor authentication (2FA).
%p %p
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment