From 34413615683677e26213263fb98f63b5aab64872 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 12 Mar 2016 20:47:22 +0100 Subject: Adding simple_form, adding profile settings, header image --- app/views/settings/show.html.haml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/views/settings/show.html.haml (limited to 'app/views/settings/show.html.haml') diff --git a/app/views/settings/show.html.haml b/app/views/settings/show.html.haml new file mode 100644 index 000000000..ac5a1c36f --- /dev/null +++ b/app/views/settings/show.html.haml @@ -0,0 +1,6 @@ += simple_form_for @account, url: settings_path, method: :put do |f| + = f.input :display_name + = f.input :note + = f.input :avatar + = f.input :header + = f.button :submit -- cgit