mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-23 00:37:47 +01:00
modified settings pages a bit
This commit is contained in:
parent
025aaf2ba7
commit
550824e287
3 changed files with 30 additions and 22 deletions
|
@ -1,6 +1,8 @@
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'user/settings_tabs'
|
= render 'user/settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-9
|
||||||
|
.panel.panel-default
|
||||||
|
.panel-body
|
||||||
= bootstrap_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
|
= bootstrap_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
|
||||||
= devise_error_messages!
|
= devise_error_messages!
|
||||||
|
|
||||||
|
@ -16,8 +18,10 @@
|
||||||
|
|
||||||
= f.password_field :current_password, autocomplete: "off", label: "Current password", help: "We need your current password to confirm your changes"
|
= f.password_field :current_password, autocomplete: "off", label: "Current password", help: "We need your current password to confirm your changes"
|
||||||
|
|
||||||
= f.submit "Update"
|
= f.submit "Save settings", class: 'btn btn-primary'
|
||||||
|
%hr/
|
||||||
%p
|
%p
|
||||||
=button_to "Delete my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete, class: "btn btn-danger btn-sm"
|
Unsatisfied?
|
||||||
|
=button_to "Delete my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete, class: "btn btn-danger btn-xs"
|
||||||
|
|
||||||
= link_to "Back", :back
|
= link_to "Back", :back
|
|
@ -1,4 +1,6 @@
|
||||||
.col-md-3.col-xs-12.col-sm-3
|
.col-md-3.col-xs-12.col-sm-3
|
||||||
|
.panel.panel-default
|
||||||
|
.panel-body
|
||||||
%ul.nav.nav-pills.nav-stacked
|
%ul.nav.nav-pills.nav-stacked
|
||||||
= nav_entry "Account", edit_user_registration_path
|
= nav_entry "Account", edit_user_registration_path
|
||||||
= nav_entry "Profile", edit_user_profile_path
|
= nav_entry "Profile", edit_user_profile_path
|
|
@ -1,8 +1,10 @@
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'settings_tabs'
|
= render 'settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-9
|
||||||
|
.panel.panel-default
|
||||||
|
.panel-body
|
||||||
= bootstrap_form_for(update_user_profile_path, method: "patch") do |f|
|
= bootstrap_form_for(update_user_profile_path, method: "patch") do |f|
|
||||||
|
|
||||||
= f.text_field :display_name, label: "Your name"
|
= f.text_field :display_name, label: "Your name"
|
||||||
|
|
||||||
= f.submit
|
= f.submit "Save settings", class: 'btn btn-primary'
|
Loading…
Reference in a new issue