From 693383234c68397c22bb94d1d93cb33c6a8ae939 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 25 Sep 2016 15:48:20 +0200 Subject: Improved style of settings page --- app/views/settings/show.html.haml | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'app/views') diff --git a/app/views/settings/show.html.haml b/app/views/settings/show.html.haml index e184d1ca6..fe4d37b55 100644 --- a/app/views/settings/show.html.haml +++ b/app/views/settings/show.html.haml @@ -1,14 +1,17 @@ - content_for :page_title do Edit profile -= simple_form_for @account, url: settings_path, method: :put do |f| - = f.error_notification += 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 - .form-inputs - = f.input :display_name - = f.input :note - = f.input :avatar - = f.input :header - - .form-actions - = f.button :submit, 'Save changes' + .actions + = f.button 'Save changes', type: :submit -- cgit