This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-14 09:41:13 -07:00
|
|
|
- content_for :page_title do
|
|
|
|
Edit profile
|
|
|
|
|
2016-10-18 07:37:15 -07:00
|
|
|
= simple_form_for @account, url: settings_profile_path, html: { method: :put } do |f|
|
|
|
|
= render 'shared/error_messages', object: @account
|
|
|
|
|
|
|
|
= f.input :display_name, placeholder: 'Display name'
|
|
|
|
= f.input :note, placeholder: 'Bio'
|
|
|
|
= f.input :avatar, wrapper: :with_label
|
|
|
|
= f.input :header, wrapper: :with_label
|
2016-03-14 09:41:13 -07:00
|
|
|
|
2016-09-25 06:48:20 -07:00
|
|
|
.actions
|
2016-10-18 07:37:15 -07:00
|
|
|
= f.button :button, 'Save changes', type: :submit
|
2016-10-13 17:28:49 -07:00
|
|
|
|
|
|
|
.form-footer= render "settings/shared/links"
|