-
- <%= f.password_field(:pass_crypt_confirmation, :tabindex => 7) %>
- <%= f.error_message_on(:pass_crypt_confirmation) %>
+ <%= f.text_field :display_name, :help => t(".display name description"), :tabindex => 2 %>
+
+ <% if current_user.auth_uid.nil? %>
+
+
+ <%= f.password_field :pass_crypt, :tabindex => 3 %>
+
+
+ <%= f.password_field :pass_crypt_confirmation, :tabindex => 4 %>
+
-
+ <% end %>
-
- <%= link_to raw(t(".use external auth")), "#", :id => "auth_enable" %>
-
+
<%= t(".by_signing_up.html",
+ :tou_link => link_to(t("layouts.tou"),
+ "https://wiki.osmfoundation.org/wiki/Terms_of_Use",
+ :target => :new),
+ :privacy_policy_link => link_to(t(".by_signing_up.privacy_policy"),
+ t(".by_signing_up.privacy_policy_url"),
+ :title => t(".by_signing_up.privacy_policy_title"),
+ :target => :new),
+ :contributor_terms_link => link_to(t(".by_signing_up.contributor_terms"),
+ t(".by_signing_up.contributor_terms_url"),
+ :target => :new)) %>
+ <%= f.form_group do %>
+ <%= f.check_box :consider_pd,
+ :tabindex => 5,
+ :label => t(".consider_pd_html",
+ :consider_pd_link => link_to(t(".consider_pd"),
+ t(".consider_pd_url"),
+ :target => :new)) %>
+ <% end %>
- <%= submit_tag t('.continue'), :tabindex => 8 %>
+
+ <%= submit_tag(t(".continue"), :name => "continue", :id => "continue", :class => "btn btn-primary", :tabindex => 6) %>
+
<% end %>
-
-
<%= t '.about.header' %>
- <%= t '.about.html' %>
-
+<% if current_user.auth_uid.nil? and @preferred_auth_provider.nil? %>
+ <%= render :partial => "shared/section_divider", :locals => { :text => t(".use external auth") } %>
+ <%= render :partial => "auth_providers" %>
+<% end %>