Commit 66121d6c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Improve devise views

parent 210e9cd4
/* Login Page */ /* Login Page */
body.login-page{ body.login-page{
padding-top: 10%; padding-top: 7%;
background: #f1f1f1; background: #666;
} }
.login-box{ .login-box{
......
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :class => "login-box", :method => :post }) do |f| %> <%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { class: "login-box", method: :post }) do |f| %>
<%= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" %> <%= image_tag "login-logo.png", width: "304", height: "66", class: "login-logo", alt: "Login Logo" %>
<%= devise_error_messages! %> <%= devise_error_messages! %>
<%= f.email_field :email, :placeholder => "Email", :class => "text" %> <%= f.email_field :email, placeholder: "Email", class: "text" %>
<br/> <br/>
<br/> <br/>
<%= f.submit "Reset password", :class => "btn-primary btn" %> <%= f.submit "Reset password", class: "btn-primary btn" %>
<div class="right"> <%= link_to "Sign in", new_session_path(resource_name), :class => "btn" %><br /></div> <div class="pull-right"> <%= link_to "Sign in", new_session_path(resource_name), class: "btn" %><br /></div>
<% end %> <% end %>
= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :class => "login-box" }) do |f| = form_for(resource, as: resource_name, url: registration_path(resource_name), html: { class: "login-box" }) do |f|
= image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo" = image_tag "login-logo.png", width: "304", height: "66", class: "login-logo", alt: "Login Logo"
= devise_error_messages! = devise_error_messages!
%div %div
= f.text_field :name, :class => "text top", :placeholder => "Name", :required => true = f.text_field :name, class: "text top", placeholder: "Name", required: true
%div %div
= f.text_field :username, :class => "text middle", :placeholder => "Username", :required => true = f.text_field :username, class: "text middle", placeholder: "Username", required: true
%div %div
= f.email_field :email, :class => "text middle", :placeholder => "Email", :required => true = f.email_field :email, class: "text middle", placeholder: "Email", required: true
%div %div
= f.password_field :password, :class => "text middle", :placeholder => "Password", :required => true = f.password_field :password, class: "text middle", placeholder: "Password", required: true
%div %div
= f.password_field :password_confirmation, :class => "text bottom", :placeholder => "Confirm password", :required => true = f.password_field :password_confirmation, class: "text bottom", placeholder: "Confirm password", required: true
%div %div
= f.submit "Sign up", :class => "btn-primary btn wide" = f.submit "Sign up", class: "btn-create btn"
%br
%hr %hr
= link_to "Sign in", new_session_path(resource_name) = link_to "Sign in", new_session_path(resource_name)
= link_to "Forgot your password?", new_password_path(resource_name), :class => "right" = link_to "Forgot your password?", new_password_path(resource_name), class: "pull-right"
...@@ -11,18 +11,18 @@ ...@@ -11,18 +11,18 @@
= f.check_box :remember_me = f.check_box :remember_me
%span Remember me %span Remember me
%br/ %br/
= f.submit "Sign in", :class => "btn-primary btn wide" = f.submit "Sign in", :class => "btn-create btn"
.pull-right .pull-right
= link_to "Forgot your password?", new_password_path(resource_name), :class => "btn" = link_to "Forgot your password?", new_password_path(resource_name), :class => "btn"
%br/ %br/
%br/
- if Gitlab.config.gitlab.signup_enabled - if Gitlab.config.gitlab.signup_enabled
%hr/ %hr/
Don't have an account? Don't have an account?
= link_to "Sign up", new_registration_path(resource_name) = link_to "Sign up", new_registration_path(resource_name)
.clearfix
- if devise_mapping.omniauthable? && resource_class.omniauth_providers.present? - if devise_mapping.omniauthable? && resource_class.omniauth_providers.present?
%hr
%div %div
%span Sign in with: &nbsp;
- resource_class.omniauth_providers.each do |provider| - resource_class.omniauth_providers.each do |provider|
%span %span
= link_to authbutton(provider, 32), omniauth_authorize_path(resource_name, provider) = link_to authbutton(provider, 32), omniauth_authorize_path(resource_name, provider)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment