X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/55b2ddc6dfc8e36f135836d54a16d17bdb6f8372..b625eefdeb55822c7d4a4dafa6473c8ac537ef48:/app/views/sessions/new.html.erb diff --git a/app/views/sessions/new.html.erb b/app/views/sessions/new.html.erb index 03755730b..d30eb6697 100644 --- a/app/views/sessions/new.html.erb +++ b/app/views/sessions/new.html.erb @@ -1,51 +1,67 @@ <% content_for :head do %> <%= javascript_include_tag "login" %> + <%= javascript_include_tag "auth_providers" %> <% end %> +<% content_for :heading_class, "p-0 mw-100" %> + <% content_for :heading do %> -

<%= t ".heading" %>

+ <% if @client_app_name %> +

<%= t(".login_to_authorize_html", :client_app_name => @client_app_name) %>

+ <% end %> + +
+ +
<% end %> -
-

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

+
+ <% if @preferred_auth_provider %> + <%= render :partial => "auth_providers" %> +
+
+
<%= t ".or" %>
+
+
+ <% end %> <%= bootstrap_form_tag(:action => "login", :html => { :id => "login_form" }) do |f| %> <%= 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 %> - <%= f.primary t(".login_button"), :tabindex => 4 %> +
+ <%= f.primary t(".login_button"), :tabindex => 4 %> +
<% end %> -
- -
-
- - -
    -
  • <%= link_to image_tag("openid.png", :alt => t(".auth_providers.openid.title")), "#", :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 -%> -
- - <%= form_tag(auth_path(:provider => "openid"), :id => "openid_login_form") do %> -
- - <%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %> - <%= text_field_tag("openid_url", "", :tabindex => 3, :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" %> - <% end %> + <% unless @preferred_auth_provider %> +
+
+
<%= t ".with external" %>
+
-
+ <%= render :partial => "auth_providers" %> + <% end %>