Retrospring/app/views/user/_account.html.haml

29 lines
1.3 KiB
Plaintext
Raw Normal View History

2014-11-02 11:52:19 -08:00
.container.j2-page
= render 'user/settings_tabs'
.col-md-9.col-xs-12.col-sm-9
2014-11-11 11:01:24 -08:00
.panel.panel-default
.panel-body
2014-12-07 06:53:19 -08:00
= bootstrap_form_for(resource, as: resource_name, url: '/settings/account', html: { method: :put }) do |f|
2014-11-11 11:01:24 -08:00
= devise_error_messages!
2014-11-02 11:52:19 -08:00
2014-11-11 11:01:24 -08:00
= f.text_field :screen_name, autofocus: true, label: "User name"
2014-11-02 11:52:19 -08:00
2014-11-11 11:01:24 -08:00
= f.email_field :email, label: "Email address"
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
%div
Currently waiting confirmation for: #{resource.unconfirmed_email}
2014-11-02 11:52:19 -08:00
2014-11-11 11:01:24 -08:00
= f.password_field :password, autocomplete: "off", label: "Password", help: "Leave this blank if you don't want to change it"
= f.password_field :password_confirmation, autocomplete: "off", label: "Confirm password"
2014-11-02 11:52:19 -08:00
2014-11-11 11:01:24 -08:00
= f.password_field :current_password, autocomplete: "off", label: "Current password", help: "We need your current password to confirm your changes"
2014-11-02 11:52:19 -08:00
2014-11-11 11:01:24 -08:00
= f.submit "Save settings", class: 'btn btn-primary'
%hr/
%p
Unsatisfied?
=button_to "Delete my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete, class: "btn btn-danger btn-xs"
2014-11-02 11:52:19 -08:00
= link_to "Back", :back
.visible-xs= render "shared/links"