16 lines
476 B
Text
16 lines
476 B
Text
= javascript_include_tag "validation"
|
|
|
|
= form_for(resource, :as => resource_name, :url => invitation_path(resource_name), :html => {:method => :put }) do |f|
|
|
%p
|
|
= f.label :username
|
|
= f.text_field :username
|
|
%p
|
|
= f.label :password
|
|
= f.password_field :password
|
|
%p
|
|
= f.label :password_confirmation
|
|
= f.password_field :password_confirmation
|
|
|
|
= f.hidden_field :invitation_token
|
|
= f.submit t('.sign_up')
|
|
= render :partial => "devise/shared/links"
|