scinote-web/app/views/users/registrations/new.html.erb
2017-01-25 12:01:23 +01:00

78 lines
2.1 KiB
Plaintext

<% provide(:head_title, t('users.registrations.new.head_title')) %>
<div class="center-block center-block-narrow">
<h2>Sign up</h2>
<%= form_for(:user, as: resource_name, url: registration_path(resource_name)) do |f| %>
<div class="form-group">
<%= f.label :full_name %>
<%= f.text_field :full_name, autofocus: true, class: 'form-control' %>
</div>
<div class="form-group">
<%= f.label :email %>
<%= f.email_field :email, class: 'form-control' %>
</div>
<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' %>
</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 :team, :name, t('users.registrations.new.team_name_label') %>
<% if @team %>
<%= text_field :team, :name, class: 'form-control', value: @team.name %>
<% else %>
<%= text_field :team, :name, class: 'form-control' %>
<% end %>
<span><small><%= t 'users.registrations.new.team_name_help' %></small></span>
</div>
<%= recaptcha_input_tag %>
<div class="form-group" data-hook="sign-up-form-submit">
<%= f.submit 'Sign up', class: 'btn btn-primary' %>
</div>
<% end %>
<%= render 'users/shared/links' %>
</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);
}());
</script>
<% end %>
<% if @team and not @team.errors.empty? %>
<script>
(function () {
var formErrors = {};
<% @team.errors.each do |err, m| %>
formErrors["<%= err %>"] =["<%= m %>"];
<% end %>
$("form").renderFormErrors('team', formErrors, false);
}());
</script>
<% end %>