52 lines
1.7 KiB
Plaintext
52 lines
1.7 KiB
Plaintext
#block-signup.block
|
|
%h2= title t("devise.registrations.sign_up_header")
|
|
.content
|
|
= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :class => "form" }) do |f|
|
|
= hidden_field_tag :invitation_token, @invitation_token
|
|
- if resource.errors.present?
|
|
.flash
|
|
.message.error= resource.errors.full_messages.map { |msg| content_tag(:p, msg) }.join.html_safe
|
|
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :uname, :class => "label"
|
|
.right
|
|
= f.text_field :uname, :class => "text_field"
|
|
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :email, :class => "label"
|
|
.right
|
|
= f.text_field :email, :class => "text_field", :readonly => 'readonly'
|
|
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :name, :class => "label"
|
|
.right
|
|
= f.text_field :name, :class => "text_field"
|
|
|
|
- if resource.authentications.blank?
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :password, :class => "label"
|
|
.right
|
|
= f.password_field :password, :class => "text_field"
|
|
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :password_confirmation, :class => "label"
|
|
.right
|
|
= f.password_field :password_confirmation, :class => "text_field"
|
|
|
|
.group.wat-cf
|
|
.left
|
|
= f.label :language, :class => "label"
|
|
.right
|
|
= f.select :language, User::LANGUAGES_FOR_SELECT
|
|
|
|
.group.navform.wat-cf
|
|
%button.button{ :type => "submit" }
|
|
#{image_tag("web-app-theme/icons/tick.png", :alt => t("devise.registrations.sign_up_header"))} #{t("devise.registrations.sign_up_header")}
|
|
%span.text_button_padding
|
|
= render :partial => "devise/shared/links"
|