Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
6d332ce1
Commit
6d332ce1
authored
Jul 11, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve signin/signup/reset pages UI
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
f4fbc7b9
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
121 additions
and
116 deletions
+121
-116
app/assets/stylesheets/sections/login.scss
app/assets/stylesheets/sections/login.scss
+5
-7
app/views/devise/confirmations/new.html.haml
app/views/devise/confirmations/new.html.haml
+13
-15
app/views/devise/passwords/edit.html.haml
app/views/devise/passwords/edit.html.haml
+18
-15
app/views/devise/passwords/new.html.haml
app/views/devise/passwords/new.html.haml
+13
-14
app/views/devise/registrations/new.html.haml
app/views/devise/registrations/new.html.haml
+27
-24
app/views/devise/sessions/_new_base.html.haml
app/views/devise/sessions/_new_base.html.haml
+1
-1
app/views/devise/sessions/_new_ldap.html.haml
app/views/devise/sessions/_new_ldap.html.haml
+1
-1
app/views/devise/sessions/new.html.haml
app/views/devise/sessions/new.html.haml
+38
-39
app/views/devise/shared/_sign_in_link.html.haml
app/views/devise/shared/_sign_in_link.html.haml
+5
-0
No files found.
app/assets/stylesheets/sections/login.scss
View file @
6d332ce1
...
...
@@ -6,12 +6,6 @@
}
.login-box
{
position
:
relative
;
margin
:
auto
;
padding
:
20px
;
background
:
#f5f5f5
;
border
:
1px
solid
#EEE
;
@include
box-shadow
(
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.05
));
}
.brand-image
{
...
...
@@ -27,7 +21,7 @@
}
.form-control
{
background-color
:
#F
FF
;
background-color
:
#F
5F5F5
;
font-size
:
16px
;
padding
:
14px
10px
;
width
:
100%
;
...
...
@@ -49,6 +43,10 @@
margin-bottom
:
0px
;
@include
border-radius
(
0
);
}
&
:active
,
&
:focus
{
background-color
:
#FFF
;
}
}
.login-box
a
.forgot
{
...
...
app/views/devise/confirmations/new.html.haml
View file @
6d332ce1
.login-box
%h3
.page-title
Resend confirmation instructions
=
form_for
(
resource
,
as:
resource_name
,
url:
confirmation_path
(
resource_name
),
html:
{
method: :post
})
do
|
f
|
.devise-errors
=
devise_error_messages!
.clearfix.append-bottom-20
=
f
.
email_field
:email
,
placeholder:
'Email'
,
class:
"form-control"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Resend confirmation instructions"
,
class:
'btn btn-success'
%hr
%p
%span
.light
Already have login and password?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
.login-box.panel.panel-default
.panel-heading
%h3
.panel-title
Resend confirmation instructions
.panel-body
=
form_for
(
resource
,
as:
resource_name
,
url:
confirmation_path
(
resource_name
),
html:
{
method: :post
})
do
|
f
|
.devise-errors
=
devise_error_messages!
.clearfix.append-bottom-20
=
f
.
email_field
:email
,
placeholder:
'Email'
,
class:
"form-control"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Resend confirmation instructions"
,
class:
'btn btn-success'
.panel-footer
=
render
'devise/shared/sign_in_link'
app/views/devise/passwords/edit.html.haml
View file @
6d332ce1
=
form_for
(
resource
,
as:
resource_name
,
url:
password_path
(
resource_name
),
html:
{
method: :put
,
class:
"login-box"
})
do
|
f
|
%h3
Change your password
.devise-errors
=
devise_error_messages!
=
f
.
hidden_field
:reset_password_token
%div
=
f
.
password_field
:password
,
class:
"form-control top"
,
placeholder:
"New password"
,
required:
true
%div
=
f
.
password_field
:password_confirmation
,
class:
"form-control bottom"
,
placeholder:
"Confirm new password"
,
required:
true
%div
.clearfix.append-bottom-10
=
f
.
submit
"Change my password"
,
class:
"btn btn-primary"
=
link_to
"Sign in"
,
new_session_path
(
resource_name
),
class:
"btn pull-right"
%div
=
link_to
"Didn't receive confirmation instructions?"
,
new_confirmation_path
(
resource_name
)
.login-box.panel.panel-default
.panel-heading
%h3
.panel-title
Change your password
.panel-body
=
form_for
(
resource
,
as:
resource_name
,
url:
password_path
(
resource_name
),
html:
{
method: :put
})
do
|
f
|
.devise-errors
=
devise_error_messages!
=
f
.
hidden_field
:reset_password_token
%div
=
f
.
password_field
:password
,
class:
"form-control top"
,
placeholder:
"New password"
,
required:
true
%div
=
f
.
password_field
:password_confirmation
,
class:
"form-control bottom"
,
placeholder:
"Confirm new password"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Change my password"
,
class:
"btn btn-primary"
.panel-footer
%p
=
link_to
"Didn't receive confirmation instructions?"
,
new_confirmation_path
(
resource_name
)
=
render
'devise/shared/sign_in_link'
app/views/devise/passwords/new.html.haml
View file @
6d332ce1
=
form_for
(
resource
,
as:
resource_name
,
url:
password_path
(
resource_name
),
html:
{
class:
"login-box"
,
method: :post
})
do
|
f
|
%h3
.page-title
Reset password
.devise-errors
=
devise_error_messages!
.clearfix.append-bottom-20
=
f
.
email_field
:email
,
placeholder:
"Email"
,
class:
"form-control"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Reset password"
,
class:
"btn-primary btn"
%hr
%p
%span
.light
Already have login and password?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
.login-box.panel.panel-default
.panel-heading
%h3
.panel-title
Reset password
.panel-body
=
form_for
(
resource
,
as:
resource_name
,
url:
password_path
(
resource_name
),
html:
{
method: :post
})
do
|
f
|
.devise-errors
=
devise_error_messages!
.clearfix.append-bottom-20
=
f
.
email_field
:email
,
placeholder:
"Email"
,
class:
"form-control"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Reset password"
,
class:
"btn-primary btn"
.panel-footer
=
render
'devise/shared/sign_in_link'
app/views/devise/registrations/new.html.haml
View file @
6d332ce1
=
form_for
(
resource
,
as:
resource_name
,
url:
registration_path
(
resource_name
),
html:
{
class:
"login-box"
})
do
|
f
|
%h3
.page-title
Sign Up
.devise-errors
=
devise_error_messages!
%div
=
f
.
text_field
:name
,
class:
"form-control top"
,
placeholder:
"Name"
,
required:
true
%div
=
f
.
text_field
:username
,
class:
"form-control middle"
,
placeholder:
"Username"
,
required:
true
%div
=
f
.
email_field
:email
,
class:
"form-control middle"
,
placeholder:
"Email"
,
required:
true
%div
=
f
.
password_field
:password
,
class:
"form-control middle"
,
placeholder:
"Password"
,
required:
true
%div
=
f
.
password_field
:password_confirmation
,
class:
"form-control bottom"
,
placeholder:
"Confirm password"
,
required:
true
%div
=
f
.
submit
"Sign up"
,
class:
"btn-create btn"
%hr
%p
%span
.light
Have an account?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
%p
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
)
.login-box.panel.panel-success
.panel-heading
%h3
.panel-title
Sign up
.panel-body
=
form_for
(
resource
,
as:
resource_name
,
url:
registration_path
(
resource_name
))
do
|
f
|
.devise-errors
=
devise_error_messages!
%div
=
f
.
text_field
:name
,
class:
"form-control top"
,
placeholder:
"Name"
,
required:
true
%div
=
f
.
text_field
:username
,
class:
"form-control middle"
,
placeholder:
"Username"
,
required:
true
%div
=
f
.
email_field
:email
,
class:
"form-control middle"
,
placeholder:
"Email"
,
required:
true
%div
=
f
.
password_field
:password
,
class:
"form-control middle"
,
placeholder:
"Password"
,
required:
true
%div
=
f
.
password_field
:password_confirmation
,
class:
"form-control bottom"
,
placeholder:
"Confirm password"
,
required:
true
%div
=
f
.
submit
"Sign up"
,
class:
"btn-create btn"
.panel-footer
%p
%span
.light
Have an account?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
%p
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
)
app/views/devise/sessions/_new_base.html.haml
View file @
6d332ce1
...
...
@@ -8,7 +8,7 @@
%span
Remember me
%div
=
hidden_field_tag
'return_to'
,
params
[
:return_to
]
=
f
.
submit
"Sign in"
,
class:
"btn-
creat
e btn"
=
f
.
submit
"Sign in"
,
class:
"btn-
sav
e btn"
.pull-right
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
),
class:
"btn"
app/views/devise/sessions/_new_ldap.html.haml
View file @
6d332ce1
...
...
@@ -2,4 +2,4 @@
=
text_field_tag
:username
,
nil
,
{
class:
"form-control top"
,
placeholder:
"LDAP Login"
,
autofocus:
"autofocus"
}
=
password_field_tag
:password
,
nil
,
{
class:
"form-control bottom"
,
placeholder:
"Password"
}
%br
/
=
submit_tag
"LDAP Sign in"
,
class:
"btn-
creat
e btn"
=
submit_tag
"LDAP Sign in"
,
class:
"btn-
sav
e btn"
app/views/devise/sessions/new.html.haml
View file @
6d332ce1
.login-box
%h3
.page-title
Sign in
-
if
ldap_enabled?
&&
gitlab_config
.
signin_enabled
%ul
.nav.nav-tabs
%li
.active
=
link_to
'LDAP'
,
'#tab-ldap'
,
'data-toggle'
=>
'tab'
%li
=
link_to
'Standard'
,
'#tab-signin'
,
'data-toggle'
=>
'tab'
.tab-content
%div
#tab-ldap
.tab-pane.active
=
render
partial:
'devise/sessions/new_ldap'
%div
#tab-signin
.tab-pane
=
render
partial:
'devise/sessions/new_base'
.login-box.panel.panel-primary
.panel-heading
%h3
.panel-title
Sign in
.panel-body
-
if
ldap_enabled?
&&
gitlab_config
.
signin_enabled
%ul
.nav.nav-tabs
%li
.active
=
link_to
'LDAP'
,
'#tab-ldap'
,
'data-toggle'
=>
'tab'
%li
=
link_to
'Standard'
,
'#tab-signin'
,
'data-toggle'
=>
'tab'
.tab-content
%div
#tab-ldap
.tab-pane.active
=
render
partial:
'devise/sessions/new_ldap'
%div
#tab-signin
.tab-pane
=
render
partial:
'devise/sessions/new_base'
-
elsif
ldap_enabled?
=
render
partial:
'devise/sessions/new_ldap'
-
elsif
gitlab_config
.
signin_enabled
=
render
partial:
'devise/sessions/new_base'
-
else
%div
No authentication methods configured.
=
render
'devise/sessions/oauth_providers'
if
Gitlab
.
config
.
omniauth
.
enabled
&&
devise_mapping
.
omniauthable?
.panel-footer
-
if
gitlab_config
.
signup_enabled
%p
%span
.light
Don't have an account?
%strong
=
link_to
"Sign up"
,
new_registration_path
(
resource_name
)
-
elsif
ldap_enabled?
=
render
partial:
'devise/sessions/new_ldap'
-
elsif
gitlab_config
.
signin_enabled
=
render
partial:
'devise/sessions/new_base'
-
else
%div
No authentication methods configured.
=
render
'devise/sessions/oauth_providers'
if
Gitlab
.
config
.
omniauth
.
enabled
&&
devise_mapping
.
omniauthable?
%hr
-
if
gitlab_config
.
signup_enabled
%p
%span
.light
Don't have an account?
%strong
=
link_to
"Sign up"
,
new_registration_path
(
resource_name
)
%p
%span
.light
Did not receive confirmation email?
=
link_to
"Send again"
,
new_confirmation_path
(
resource_name
)
%span
.light
Did not receive confirmation email?
=
link_to
"Send again"
,
new_confirmation_path
(
resource_name
)
-
if
extra_config
.
has_key?
(
'sign_in_text'
)
%hr
=
markdown
(
extra_config
.
sign_in_text
)
-
if
extra_config
.
has_key?
(
'sign_in_text'
)
%hr
=
markdown
(
extra_config
.
sign_in_text
)
app/views/devise/shared/_sign_in_link.html.haml
0 → 100644
View file @
6d332ce1
%p
%span
.light
Already have login and password?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment