<%= javascript_include_tag "login" %>
<% end %>
+<% content_for :heading_class, "p-0 mw-100" %>
+
<% content_for :heading do %>
- <h1><%= t ".heading" %></h1>
+ <div class="header-illustration new-user-main auth-container mx-auto">
+ <h1 class="pt-3"><%= t ".heading" %></h1>
+ <div>
<% end %>
-<div id="login_login">
+<div id="login_login" class="auth-container mx-auto my-0">
<p class='text-muted'><%= t ".no account" %> <%= link_to t(".register now"), user_new_path(:referer => params[:referer]) %></p>
<%= 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") %>
+
+ <div class="row">
+ <div class="col">
+ <%= f.label :password, :class => "form-label" %>
+ </div>
+ <div class="col text-end">
+ <small><%= link_to(t(".lost password link"), user_forgot_password_path) %></small>
+ </div>
+ </div>
+ <input class="form-control mb-3" type="password" name="password" id="password" tabindex="2" value="" autocomplete="off" />
+
<%= f.form_group do %>
<%= f.check_box :remember_me, { :label => t(".remember"), :tabindex => 3, :checked => (params[:remember_me] == "yes") }, "yes" %>
<% end %>
<label class="form-label"><%= t ".with external" %></label>
<ul class='list-inline' id="login_auth_buttons">
- <li class="list-inline-item me-3"><%= link_to image_tag("openid.png", :alt => t(".auth_providers.openid.title")), "#", :id => "openid_open_url", :title => t(".auth_providers.openid.title") %></li>
+ <li class="list-inline-item me-3">
+ <%= link_to image_tag("openid.png",
+ :alt => t(".auth_providers.openid.title"),
+ :size => "36"),
+ "#",
+ :id => "openid_open_url",
+ :title => t(".auth_providers.openid.title") %>
+ </li>
+
<% %w[google facebook microsoft github wikipedia].each do |provider| %>
<% if Settings.key?("#{provider}_auth_id".to_sym) -%>
<li class="list-inline-item me-3"><%= auth_button provider, provider %></li>
<div id='login_openid_url' class="mb-3">
<label for='openid_url' class="form-label"><%= t ".openid_html", :logo => openid_logo %></label>
<%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %>
- <%= text_field_tag("openid_url", "", :tabindex => 3, :autocomplete => "on", :class => "openid_url form-control") %>
+ <%= text_field_tag("openid_url", "", :tabindex => 5, :autocomplete => "on", :class => "openid_url form-control") %>
<span class="form-text text-muted">(<a href="<%= t "accounts.edit.openid.link" %>" target="_new"><%= t "accounts.edit.openid.link text" %></a>)</span>
</div>