X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/42cdcce858e38418403aa4733837da4c3a62ff34..81bafc6dc2074b9cd12a7d70ae7a5e21651e5910:/app/views/user/login.html.erb diff --git a/app/views/user/login.html.erb b/app/views/user/login.html.erb index 77294e62f..a7927b6e0 100644 --- a/app/views/user/login.html.erb +++ b/app/views/user/login.html.erb @@ -1,13 +1,82 @@ -

<%= t 'user.login.heading' %>

- -

<%= t 'user.login.please login', :create_user_link => link_to(t('user.login.create_account'), :controller => 'user', :action => 'new', :referer => params[:referer]) %>

- -<% form_tag :action => 'login' do %> -<%= hidden_field_tag('referer', h(params[:referer])) %> - - - - - -
<%= t 'user.login.email or username' %><%= text_field('user', 'email',{:size => 28, :maxlength => 255, :tabindex => 1}) %>
<%= t 'user.login.password' %><%= password_field('user', 'password',{:size => 28, :maxlength => 255, :tabindex => 2}) %> (<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>)
 
<%= submit_tag t('user.login.login_button'), :tabindex => 3 %>
+ +
+<% content_for :heading do %> +

<%= t 'user.login.heading' %>

<% end %> + + <%= form_tag({ :action => "login" }, { :id => "login_form" }) do %> + <%= hidden_field_tag('referer', h(params[:referer])) %> + +

<%= t 'user.login.no account' %> <%= link_to t('user.login.register now'), :action => :new, :referer => params[:referer] %>

+ +
+
+ + <%= text_field_tag "username", params[:username], :maxlength => 255, :tabindex => 1 %> +
+
+ + <%= password_field_tag "password", "", :maxlength => 255, :tabindex => 2 %> +

+ <%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %> +

+
+
+ <%= check_box_tag "remember_me", "yes", false, :tabindex => 3 %> + +
+
+ <%= submit_tag t('user.login.login_button'), :tabindex => 4 %> +
+
+

<%= t 'user.login.with openid' %>

+ + + +
+
+ + <%= url_field_tag("openid_url", "", { :tabindex => 3, :class => "openid_url" }) %> + (<%= t 'user.account.openid.link text' %>) +
+
+ + <%= check_box_tag "remember_me", "yes", false, :tabindex => 5 %> +
+
+ <%= submit_tag t('user.login.login_button'), :tabindex => 6, :id => "login_openid_submit" %> + <% end %> + +
+ +