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-09-25 06:48:20 -07:00
|
|
|
= form_for @account, url: settings_path, html: { method: :put } do |f|
|
|
|
|
.field
|
|
|
|
= f.text_field :display_name, placeholder: 'Display name'
|
|
|
|
.field
|
|
|
|
= f.text_area :note, placeholder: 'Bio'
|
|
|
|
.file-field
|
|
|
|
= f.label :avatar
|
|
|
|
= f.file_field :avatar
|
|
|
|
.file-field
|
|
|
|
= f.label :header
|
|
|
|
= f.file_field :header
|
2016-03-14 09:41:13 -07:00
|
|
|
|
2016-09-25 06:48:20 -07:00
|
|
|
.actions
|
|
|
|
= f.button 'Save changes', type: :submit
|