X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/28af501924c6cc30560f463fe818bb098a18b9cc..c4347c8d9a10bf5c141ad7d355594b93e20545f6:/app/views/sessions/new.html.erb diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb index 69ea7d8fd..08ab872aa 100644 --- a/app/views/sessions/new.html.erb +++ b/app/views/sessions/new.html.erb @@ -2,18 +2,32 @@ <%= javascript_include_tag "login" %> <% end %> +<% content_for :heading_class, "p-0 mw-100" %> + <% content_for :heading do %> -

<%= t ".heading" %>

+
+

<%= t ".heading" %>

+
<% end %> -
+

<%= t ".no account" %> <%= link_to t(".register now"), user_new_path(:referer => params[:referer]) %>

<%= bootstrap_form_tag(:action => "login", :html => { :id => "login_form" }) do |f| %> - <%= hidden_field_tag("referer", h(params[:referer])) %> + <%= hidden_field_tag("referer", h(params[:referer]), :autocomplete => "off") %> <%= f.text_field :username, :label => t(".email or username"), :tabindex => 1, :value => params[:username] %> - <%= f.password_field :password, :label => t(".password"), :tabindex => 2, :value => "", :help => link_to(t(".lost password link"), :controller => "passwords", :action => "lost_password") %> + +
+
+ <%= f.label :password, :class => "form-label" %> +
+
+ <%= link_to(t(".lost password link"), user_forgot_password_path) %> +
+
+ + <%= f.form_group do %> <%= f.check_box :remember_me, { :label => t(".remember"), :tabindex => 3, :checked => (params[:remember_me] == "yes") }, "yes" %> <% end %> @@ -24,37 +38,32 @@
-
- +
+ -
    -
  • <%= link_to image_tag("openid.png", :alt => t(".auth_providers.openid.title")), "#", :id => "openid_open_url", :title => t(".auth_providers.openid.title") %>
  • - <% if Settings.key?(:google_auth_id) -%> -
  • <%= auth_button "google", "google" %>
  • - <% end -%> - <% if Settings.key?(:facebook_auth_id) -%> -
  • <%= auth_button "facebook", "facebook" %>
  • - <% end -%> - <% if Settings.key?(:windowslive_auth_id) -%> -
  • <%= auth_button "windowslive", "windowslive" %>
  • - <% end -%> - <% if Settings.key?(:github_auth_id) -%> -
  • <%= auth_button "github", "github" %>
  • - <% end -%> - <% if Settings.key?(:wikipedia_auth_id) -%> -
  • <%= auth_button "wikipedia", "wikipedia" %>
  • +
      +
    • + <%= link_to image_tag("openid.png", + :alt => t(".auth_providers.openid.title"), + :size => "36"), + "#", + :id => "openid_open_url", + :title => t(".auth_providers.openid.title") %> +
    • + + <% %w[google facebook microsoft github wikipedia].each do |provider| %> + <% if Settings.key?("#{provider}_auth_id".to_sym) -%> +
    • <%= auth_button provider, provider %>
    • + <% end -%> <% end -%> -
    • <%= auth_button "yahoo", "openid", :openid_url => "yahoo.com" %>
    • -
    • <%= auth_button "wordpress", "openid", :openid_url => "wordpress.com" %>
    • -
    • <%= auth_button "aol", "openid", :openid_url => "aol.com" %>
    <%= form_tag(auth_path(:provider => "openid"), :id => "openid_login_form") do %> -
    - - <%= hidden_field_tag("referer", params[:referer]) %> - <%= text_field_tag("openid_url", "", :tabindex => 3, :class => "openid_url form-control") %> - (" target="_new"><%= t "users.account.openid.link text" %>) +
    + + <%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %> + <%= text_field_tag("openid_url", "", :tabindex => 5, :autocomplete => "on", :class => "openid_url form-control") %> + (" target="_new"><%= t "accounts.edit.openid.link text" %>)
    <%= submit_tag t(".login_button"), :tabindex => 6, :id => "login_openid_submit", :class => "btn btn-primary" %>