- <fieldset>
- <div class="form-row">
- <label for='user[pass_crypt]' class="standard-label">
- <%= t ".password" %>
- </label>
- <%= f.password_field(:pass_crypt, :tabindex => 6) %>
- <%= f.error_message_on(:pass_crypt) %>
- </div>
- <div class="form-row">
- <label class="standard-label">
- <%= t ".confirm password" %>
- </label>
- <%= f.password_field(:pass_crypt_confirmation, :tabindex => 7) %>
- <%= f.error_message_on(:pass_crypt_confirmation) %>
- </div>
- </fieldset>
+ <%= f.password_field :pass_crypt, :tabindex => 5 %>
+ <%= f.password_field :pass_crypt_confirmation, :tabindex => 6 %>
+
+ <p class="mb-3 text-muted"><%= t(".by_signing_up_html",
+ :tou_link => link_to(t("layouts.tou"),
+ "https://wiki.osmfoundation.org/wiki/Terms_of_Use",
+ :target => :new),
+ :contributor_terms_link => link_to(t(".contributor_terms"),
+ t(".contributor_terms_url"),
+ :target => :new)) %></p>
+
+ <div class="mb-3">
+ <%= submit_tag(t(".continue"), :name => "continue", :id => "continue", :class => "btn btn-primary", :tabindex => 7) %>
+ </div>