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