mastodon/app/views/settings/profiles/show.html.haml

16 lines
474 B
Plaintext
Raw Normal View History

- content_for :page_title do
Edit profile
2016-10-18 16:37:15 +02: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-09-25 15:48:20 +02:00
.actions
2016-10-18 16:37:15 +02:00
= f.button :button, 'Save changes', type: :submit
2016-10-14 02:28:49 +02:00
.form-footer= render "settings/shared/links"