- <%= f.select(:auth_provider, Auth.providers, :default => "", :hide_label => true, :wrapper => { :class => "col-auto mb-0" }, :tabindex => 4) %>
- <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }, :tabindex => 5) %>
+ <% if current_user.auth_uid.nil? %>
+
+
+ <%= f.password_field :pass_crypt, :tabindex => 3 %>
+
+
+ <%= f.password_field :pass_crypt_confirmation, :tabindex => 4 %>
-
<%= t ".auth no password" %>
-
-
- <%= f.password_field :pass_crypt, :tabindex => 6 %>
- <%= f.password_field :pass_crypt_confirmation, :tabindex => 7 %>
-
-
-
<%= link_to t(".use external auth"), "#", :id => "auth_enable" %>
+ <% end %>
+
+
<%= 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(".privacy_policy"),
+ t(".privacy_policy_url"),
+ :title => t(".privacy_policy_title"),
+ :target => :new),
+ :contributor_terms_link => link_to(t(".contributor_terms"),
+ t(".contributor_terms_url"),
+ :target => :new)) %>
- <%= f.primary t(".continue"), :tabindex => 8 %>
+ <%= 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"), :name => "continue", :id => "continue", :class => "btn btn-primary", :tabindex => 6) %>
+
+ <% end %>
+
+ <% if current_user.auth_uid.nil? %>
+
+ <%= render :partial => "auth_providers" %>
+ <% end %>