From f08191c3966851b19edc949d7819cc58190037d7 Mon Sep 17 00:00:00 2001 From: nfoy Date: Tue, 1 Apr 2014 18:45:00 -0400 Subject: Edit Users now works. Added delayed_job gem. --- app/views/users/_form.html.erb | 8 ++++++++ app/views/users/edit.html.erb | 2 +- app/views/users/show.html.erb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/views/users/_form.html.erb b/app/views/users/_form.html.erb index 4d28738..ae63f06 100644 --- a/app/views/users/_form.html.erb +++ b/app/views/users/_form.html.erb @@ -23,6 +23,14 @@ <%= f.label :user_name %>
<%= f.text_field :user_name %> +

+ <%= f.label(:password, "New Password (or use old)") %>
+ <%= f.password_field :password %> +

+
+ <%= f.label(:password_confirmation, "Confirm Password") %>
+ <%= f.password_field :password_confirmation %> +
<%= f.submit %>
diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb index 99bd4cc..52f32a2 100644 --- a/app/views/users/edit.html.erb +++ b/app/views/users/edit.html.erb @@ -3,4 +3,4 @@ <%= render 'form' %> <%= link_to 'Show', @user %> | -<%= link_to 'Back', users_path %> +<%= link_to 'Users', users_path %> diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index dafa73e..7bda009 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -18,4 +18,4 @@

<%= link_to 'Edit', edit_user_path(@user) %> | -<%= link_to 'Back', users_path %> +<%= link_to 'Users', users_path %> -- cgit v1.2.3-54-g00ecf