about summary refs log tree commit diff
path: root/app/views/settings/profiles/show.html.haml
blob: 2ff91beff18dbf301e26f74b1adcc255bdf534a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- content_for :page_title do
  Edit profile

= form_for @account, url: settings_profile_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

  .actions
    = f.button 'Save changes', type: :submit

.form-footer= render "settings/shared/links"