Skip to content

Instantly share code, notes, and snippets.

@JoeWoodward
Created December 16, 2011 13:12
Show Gist options
  • Save JoeWoodward/1486000 to your computer and use it in GitHub Desktop.
Save JoeWoodward/1486000 to your computer and use it in GitHub Desktop.
.inner
.alert-message.warning
Your account has now been activated! Be sure to set your password below.
= simple_form_for [:admin, @user] do |f|
%fieldset
.clearfix
.input
= f.input :email
.clearfix
.input
= f.input :first_name
.clearfix
.input
= f.input :last_name
.clearfix.warning
.input
= f.input :password, :class => 'error', :required => true
.clearfix.warning
.input
= f.input :password_confirmation, :label => 'Confirm', :class => 'error'
.actions
= f.button :submit, 'Update Account', :class => 'btn primary', :method => :put, :url => set_password_admin_user_path(@user)
.clear
@JoeWoodward
Copy link
Author

weird path but that's what it generates so ?!?!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment