scinote-web/app/views/users/invitations/edit.html.erb

75 lines
2 KiB
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<% 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| %>
2016-02-12 23:52:43 +08:00
<%= f.hidden_field :invitation_token %>
<div class="form-group">
<%= f.label :full_name %>
<%= f.text_field :full_name, value: '', autofocus: true, class: "form-control" %>
</div>
2016-02-12 23:52:43 +08:00
<div class="form-group">
<%= f.label :password %>
<% if @minimum_password_length %>
<em>(<%= @minimum_password_length %> characters minimum)</em>
<% end %>
<%= f.password_field :password, autocomplete: "off", class: "form-control" %>
2016-02-12 23:52:43 +08:00
</div>
<div class="form-group">
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, autocomplete: "off", class: "form-control" %>
</div>
<div class="form-group">
<%= label :organization, :name, t('users.registrations.new.team_name_label') %>
2016-02-12 23:52:43 +08:00
<% if @org %>
<%= text_field :organization, :name, class: "form-control", value: @org.name %>
<% else %>
<%= text_field :organization, :name, class: "form-control" %>
<% end %>
<span><small><%= t 'users.registrations.new.team_name_help' %></small></span>
2016-02-12 23:52:43 +08:00
</div>
<%= recaptcha_input_tag %>
2016-11-25 18:52:33 +08:00
<div class="form-group" data-hook="confirm-invitation-form-submit">
2016-02-12 23:52:43 +08:00
<%= f.submit "Sign Up", class: "btn btn-primary" %>
</div>
<% end %>
</div>
<% if resource and not resource.errors.empty? %>
<script>
(function () {
var formErrors = {};
<% resource.errors.each do |err, m| %>
formErrors["<%= err %>"] =["<%= m %>"];
<% end %>
$("form").renderFormErrors("user", formErrors, false);
2016-02-12 23:52:43 +08:00
}());
</script>
<% end %>
<% if @org and not @org.errors.empty? %>
<script>
(function () {
var formErrors = {};
<% @org.errors.each do |err, m| %>
formErrors["<%= err %>"] =["<%= m %>"];
<% end %>
$("form").renderFormErrors("organization", formErrors, false);
2016-02-12 23:52:43 +08:00
}());
</script>
<% end %>