show.html.haml 302 B

1234567891011121314
  1. - content_for :page_title do
  2. Edit profile
  3. = simple_form_for @account, url: settings_path, method: :put do |f|
  4. = f.error_notification
  5. .form-inputs
  6. = f.input :display_name
  7. = f.input :note
  8. = f.input :avatar
  9. = f.input :header
  10. .form-actions
  11. = f.button :submit, 'Save changes'