diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-18 16:37:15 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-18 16:37:15 +0200 |
commit | 43df35213e80b9b7de69cc80f138882708a05b9b (patch) | |
tree | d3b70597b5172f0daf2b95e6cd4a48a7bc6d7b56 /app/views/settings/profiles | |
parent | 6f7c9774c776afeea0d98cbbd30483f4f0c6b938 (diff) |
Improving all forms
Diffstat (limited to 'app/views/settings/profiles')
-rw-r--r-- | app/views/settings/profiles/show.html.haml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml index 2ff91beff..df0cc3227 100644 --- a/app/views/settings/profiles/show.html.haml +++ b/app/views/settings/profiles/show.html.haml @@ -1,19 +1,15 @@ - 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 += 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 .actions - = f.button 'Save changes', type: :submit + = f.button :button, 'Save changes', type: :submit .form-footer= render "settings/shared/links" |