Files
growstuff/app/views/devise/registrations/edit.html.haml
Brenda Wallace cabf849774 Deleting of users
2017-05-21 21:29:09 +12:00

31 lines
809 B
Plaintext

- content_for :title, "Settings for #{current_member.login_name}"
%ul.nav.nav-tabs{ role: 'tablist' }
%li.active
%a{ href: '#profile', role: 'tab', 'data-toggle': 'tab' }
Profile
%li
%a{ href: '#email', role: 'tab', 'data-toggle': 'tab' }
Email
%li
%a{ href: '#apps', role: 'tab', 'data-toggle': 'tab' }
Apps
%li
%a{ href: '#password', role: 'tab', 'data-toggle': 'tab' }
Password
%li
%a{ href: '#delete', role: 'tab', 'data-toggle': 'tab' }
Delete Account
.tab-content
.tab-pane.active#profile
= render partial: 'edit_profile'
.tab-pane#email
= render partial: 'edit_email'
.tab-pane#apps
= render partial: 'edit_apps'
.tab-pane#password
= render partial: 'edit_password'
.tab-pane#delete
= render partial: 'delete'