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-03-12 11:47:22 -08:00
|
|
|
= simple_form_for @account, url: settings_path, method: :put do |f|
|
2016-03-14 09:41:13 -07:00
|
|
|
= f.error_notification
|
|
|
|
|
|
|
|
.form-inputs
|
|
|
|
= f.input :display_name
|
|
|
|
= f.input :note
|
|
|
|
= f.input :avatar
|
|
|
|
= f.input :header
|
|
|
|
|
|
|
|
.form-actions
|
|
|
|
= f.button :submit, 'Save changes'
|