scinote-web/app/views/users/registrations/new_with_provider.html.erb

34 lines
1.3 KiB
Text
Raw Normal View History

2018-02-26 18:05:05 +08:00
<% provide(:head_title, t('users.registrations.new.head_title')) %>
<div class="center-block center-block-narrow">
<h2><%= t 'users.registrations.new_with_provider.head_title' %></h2>
<div data-hook="sign-up-form-hook">
<%= form_for(:team, as: resource_name, url: users_complete_sign_up_provider_path, html: { id: "sign-up-provider-form" } ) do |f| %>
<%= hidden_field_tag :user, params['user'] %>
<% if Rails.configuration.x.new_team_on_signup %>
<div class="form-group" id="team_name_form">
<%= f.label :name, t('users.registrations.new.team_name_label') %>
<%= f.text_field :name, autofocus: true, class: 'form-control',
placeholder: t('users.registrations.new.team_name_placeholder') %>
2018-02-26 18:05:05 +08:00
</div>
<% end %>
<div class="form-group" data-hook="sign-up-form-submit">
<%= f.submit 'Sign up', class: 'btn btn-primary' %>
</div>
<% end %>
</div>
<%= render 'users/shared/links' %>
</div>
2021-07-23 17:56:28 +08:00
<% if @team && @team.errors.present? %>
<%= form_errors = {} %>
2018-02-26 18:05:05 +08:00
<% @team.errors.each do |err, msg| %>
<% form_errors[err] = [msg] %>
<% end %>
<div class="hidden" id="form-error-data" data-form-errors="<%= form_errors.to_json %>"></div>
<%= javascript_include_tag 'users/registrations/new_with_provider.js', nonce: true %>
2018-02-26 18:05:05 +08:00
<% end %>