1 <% content_for :head do %>
2 <%= javascript_include_tag "user" %>
5 <% content_for :heading_class, "pb-0" %>
6 <% content_for :heading do %>
7 <div class='header-illustration new-user-main'>
8 <h1><%= t ".title" %></h1>
10 <div class='header-illustration new-user-arm'></div>
14 <div class='text-muted col-sm order-sm-2'>
15 <h4><%= t ".about.header" %></h4>
16 <%= t ".about.html" %>
20 <%= bootstrap_form_for current_user, :url => { :action => "create" } do |f| %>
21 <%= hidden_field_tag("referer", h(@referer)) unless @referer.nil? %>
23 <%= f.email_field :email, :tabindex => 1 %>
24 <%= f.email_field :email_confirmation, :tabindex => 2 %>
26 <%= f.text_field :display_name, :help => t(".display name description"), :tabindex => 3 %>
28 <fieldset class="mb-3" id="auth_field">
29 <label for="user_auth_provider" class="form-label"><%= t(".external auth") %></label>
31 <%= f.select(:auth_provider, Auth.providers, :default => "", :hide_label => true, :wrapper => { :class => "col-auto mb-0" }, :tabindex => 4) %>
32 <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }, :tabindex => 5) %>
34 <small class="form-text text-muted"><%= t ".auth no password" %></small>
37 <%= f.password_field :pass_crypt, :tabindex => 6 %>
38 <%= f.password_field :pass_crypt_confirmation, :tabindex => 7 %>
40 <div id="auth_prompt">
41 <p><%= link_to t(".use external auth"), "#", :id => "auth_enable" %></p>
44 <%= f.primary t(".continue"), :tabindex => 8 %>