Commit 35d0d774 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Prefer panels over fieldset when different forms

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 47989d60
...@@ -9,10 +9,10 @@ ...@@ -9,10 +9,10 @@
Some options are unavailable for LDAP accounts Some options are unavailable for LDAP accounts
.account-page .account-page
%fieldset.update-token .panel.panel-default.update-token
%legend .panel-heading
Reset Private token Reset Private token
%div .panel-body
= form_for @user, url: reset_private_token_profile_path, method: :put do |f| = form_for @user, url: reset_private_token_profile_path, method: :put do |f|
.data .data
%p %p
...@@ -32,12 +32,11 @@ ...@@ -32,12 +32,11 @@
= f.submit 'Generate', class: "btn success btn-build-token" = f.submit 'Generate', class: "btn success btn-build-token"
- unless current_user.ldap_user? - unless current_user.ldap_user?
%fieldset
- if current_user.otp_required_for_login - if current_user.otp_required_for_login
%legend.text-success .panel.panel-success
= icon('check') .panel-heading
Two-factor Authentication enabled Two-factor Authentication enabled
%div .panel-body
.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?' }
...@@ -49,8 +48,10 @@ ...@@ -49,8 +48,10 @@
invalidating all previous codes. invalidating all previous codes.
- else - else
%legend Two-factor Authentication .panel.panel-default
%div .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
...@@ -60,8 +61,10 @@ ...@@ -60,8 +61,10 @@
= link_to 'Enable Two-factor Authentication', new_profile_two_factor_auth_path, class: 'btn btn-success' = link_to 'Enable Two-factor Authentication', new_profile_two_factor_auth_path, class: 'btn btn-success'
- if show_profile_social_tab? - if show_profile_social_tab?
%fieldset .panel.panel-default
%legend Connected Accounts .panel-heading
Connected Accounts
.panel-body
.oauth-buttons.append-bottom-10 .oauth-buttons.append-bottom-10
%p Click on icon to activate signin with one of the following services %p Click on icon to activate signin with one of the following services
- enabled_social_providers.each do |provider| - enabled_social_providers.each do |provider|
...@@ -73,9 +76,10 @@ ...@@ -73,9 +76,10 @@
= icon('close') = icon('close')
- if show_profile_username_tab? - if show_profile_username_tab?
%fieldset.update-username .panel.panel-warning.update-username
%legend .panel-heading
Change Username Change Username
.panel-body
= form_for @user, url: update_username_profile_path, method: :put, remote: true do |f| = form_for @user, url: update_username_profile_path, method: :put, remote: true do |f|
%p %p
Changing your username will change path to all personal projects! Changing your username will change path to all personal projects!
...@@ -92,10 +96,10 @@ ...@@ -92,10 +96,10 @@
= f.submit 'Save username', class: "btn btn-warning" = f.submit 'Save username', class: "btn btn-warning"
- if show_profile_remove_tab? - if show_profile_remove_tab?
%fieldset.remove-account .panel.panel-danger.remove-account
%legend .panel-heading
Remove account Remove account
%div .panel-body
%p Deleting an account has the following effects: %p Deleting an account has the following effects:
%ul %ul
%li All user content like authored issues, snippets, comments will be removed %li All user content like authored issues, snippets, comments will be removed
......
...@@ -5,9 +5,11 @@ ...@@ -5,9 +5,11 @@
OAuth2 protocol settings below. OAuth2 protocol settings below.
%hr %hr
%fieldset.oauth-applications .oauth-applications
%legend Your applications %h3
%p= link_to 'New Application', new_oauth_application_path, class: 'btn btn-success' Your applications
.pull-right
= link_to 'New Application', new_oauth_application_path, class: 'btn btn-success'
- if @applications.any? - if @applications.any?
%table.table.table-striped %table.table.table-striped
%thead %thead
...@@ -28,8 +30,9 @@ ...@@ -28,8 +30,9 @@
%td= link_to 'Edit', edit_oauth_application_path(application), class: 'btn btn-link btn-sm' %td= link_to 'Edit', edit_oauth_application_path(application), class: 'btn btn-link btn-sm'
%td= render 'doorkeeper/applications/delete_form', application: application %td= render 'doorkeeper/applications/delete_form', application: application
%fieldset.oauth-authorized-applications.prepend-top-20 .oauth-authorized-applications.prepend-top-20
%legend Authorized applications %h3
Authorized applications
- if @authorized_tokens.any? - if @authorized_tokens.any?
%table.table.table-striped %table.table.table-striped
......
...@@ -6,9 +6,10 @@ ...@@ -6,9 +6,10 @@
%hr %hr
= form_for @user, url: profile_path, remote: true, method: :put do |f| = form_for @user, url: profile_path, remote: true, method: :put do |f|
%fieldset.application-theme .panel.panel-default.application-theme
%legend .panel-heading
Application theme Application theme
.panel-body
.themes_opts .themes_opts
= label_tag do = label_tag do
.prev.default .prev.default
...@@ -42,9 +43,10 @@ ...@@ -42,9 +43,10 @@
%br %br
.clearfix .clearfix
%fieldset.code-preview-theme .panel.panel-default.code-preview-theme
%legend .panel-heading
Code preview theme Code preview theme
.panel-body
.code_highlight_opts .code_highlight_opts
- color_schemes.each do |color_scheme_id, color_scheme| - color_schemes.each do |color_scheme_id, color_scheme|
= label_tag do = label_tag do
......
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