From 7a6d95f70ccb12d61355ecd677eff40dd13260b7 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 14 Oct 2016 02:28:49 +0200 Subject: E-mail preferences page --- app/views/settings/profiles/show.html.haml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/views/settings/profiles/show.html.haml (limited to 'app/views/settings/profiles/show.html.haml') diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml new file mode 100644 index 000000000..2ff91beff --- /dev/null +++ b/app/views/settings/profiles/show.html.haml @@ -0,0 +1,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" -- cgit