mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
87 lines
2.5 KiB
Text
87 lines
2.5 KiB
Text
<% provide(:head_title, t("users.invitations.edit.head_title")) %>
|
|
|
|
<div class="center-block center-block-narrow">
|
|
|
|
<h2><%= t 'devise.invitations.edit.header' %></h2>
|
|
|
|
<%= form_for (resource or :user), as: resource_name, url: invitation_path(resource_name), html: { method: :put } do |f| %>
|
|
|
|
<%= f.hidden_field :invitation_token %>
|
|
|
|
<p class="sci-input-container">
|
|
<%= f.label :full_name %>
|
|
<%= f.text_field :full_name,
|
|
value: (params[:user] ? params[:user][:full_name] : ''),
|
|
autofocus: true,
|
|
class: 'sci-input-field' %>
|
|
</p>
|
|
|
|
<p class="sci-input-container">
|
|
<%= f.label :password %>
|
|
<% if @minimum_password_length %>
|
|
<em>(<%= @minimum_password_length %> characters minimum)</em>
|
|
<% end %>
|
|
<%= f.password_field :password, autocomplete: "off", class: "sci-input-field" %>
|
|
</p>
|
|
|
|
<p class="sci-input-container">
|
|
<%= f.label :password_confirmation %>
|
|
<%= f.password_field :password_confirmation, autocomplete: "off", class: "sci-input-field" %>
|
|
</p>
|
|
|
|
<% if Rails.configuration.x.new_team_on_signup %>
|
|
<p class="sci-input-container"
|
|
data-hook="confirm-invitation-team-name">
|
|
<%= label :team, :name, t('users.registrations.new.team_name_label') %>
|
|
<% if @team %>
|
|
<%= text_field :team, :name, class: 'sci-input-field', value: @team.name %>
|
|
<% else %>
|
|
<%= text_field :team,
|
|
:name,
|
|
class: 'form-control',
|
|
value: (params[:team] ? params[:team][:name] : '') %>
|
|
<% end %>
|
|
</p>
|
|
<% end %>
|
|
<%= recaptcha_input_tag %>
|
|
|
|
<div class="form-group" data-hook="confirm-invitation-form-submit">
|
|
<%= f.submit "Sign Up", class: "btn btn-primary" %>
|
|
</div>
|
|
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if resource && resource.errors.present? %>
|
|
<script>
|
|
(function () {
|
|
var formErrors = {};
|
|
|
|
<% resource.errors.as_json.each do |err, messages| %>
|
|
formErrors["<%= err %>"]=[]
|
|
<% messages.each do |message| %>
|
|
formErrors["<%= err %>"].push('<%= message %>');
|
|
<% end %>
|
|
<% end %>
|
|
|
|
$("form").renderFormErrors("user", formErrors, false);
|
|
}());
|
|
</script>
|
|
<% end %>
|
|
|
|
<% if @team && @team.errors.present? %>
|
|
<script>
|
|
(function () {
|
|
var formErrors = {};
|
|
|
|
<% @team.errors.as_json.each do |err, messages| %>
|
|
formErrors["<%= err %>"]=[]
|
|
<% messages.each do |message| %>
|
|
formErrors["<%= err %>"].push('<%= message %>');
|
|
<% end %>
|
|
<% end %>
|
|
|
|
$("form").renderFormErrors("team", formErrors, false);
|
|
}());
|
|
</script>
|
|
<% end %>
|