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
fe07c737
Commit
fe07c737
authored
Dec 17, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'improve/devise_ui' of /home/git/repositories/gitlab/gitlabhq
parents
dea02363
42003f53
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
59 additions
and
25 deletions
+59
-25
app/assets/stylesheets/sections/login.scss
app/assets/stylesheets/sections/login.scss
+7
-0
app/views/devise/confirmations/new.html.haml
app/views/devise/confirmations/new.html.haml
+10
-4
app/views/devise/mailer/confirmation_instructions.html.erb
app/views/devise/mailer/confirmation_instructions.html.erb
+6
-2
app/views/devise/passwords/edit.html.haml
app/views/devise/passwords/edit.html.haml
+4
-3
app/views/devise/passwords/new.html.haml
app/views/devise/passwords/new.html.haml
+11
-8
app/views/devise/registrations/new.html.haml
app/views/devise/registrations/new.html.haml
+9
-4
app/views/devise/sessions/new.html.haml
app/views/devise/sessions/new.html.haml
+9
-3
app/views/layouts/devise.html.haml
app/views/layouts/devise.html.haml
+3
-1
No files found.
app/assets/stylesheets/sections/login.scss
View file @
fe07c737
...
...
@@ -46,3 +46,10 @@ body.login-page{
margin
:
2px
;
}
}
.devise-errors
{
h2
{
font-size
:
14px
;
color
:
#a00
;
}
}
app/views/devise/confirmations/new.html.haml
View file @
fe07c737
.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_error_messages!
=
f
.
email_field
:email
,
placeholder:
'Email'
%div
=
f
.
submit
"Resend confirmation instructions"
,
class:
'btn btn-success'
.devise-errors
=
devise_error_messages!
=
f
.
email_field
:email
,
placeholder:
'Email'
,
class:
"text"
,
required:
true
.clearfix.append-bottom-10
=
f
.
submit
"Resend confirmation instructions"
,
class:
'btn btn-success'
%hr
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
%p
%span
.light
Already have login and password?
%strong
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
app/views/devise/mailer/confirmation_instructions.html.erb
View file @
fe07c737
<p>
Welcome
<%=
@resource
.
email
%>
!
</p>
<p>
Welcome
<%=
@resource
.
name
%>
!
</p>
<p>
You can confirm your account through the link below:
</p>
<%
if
@resource
.
unconfirmed_email
.
present?
%>
<p>
You can confirm your email (
<%=
@resource
.
unconfirmed_email
%>
) through the link below:
</p>
<%
else
%>
<p>
You can confirm your account through the link below:
</p>
<%
end
%>
<p>
<%=
link_to
'Confirm my account'
,
confirmation_url
(
@resource
,
confirmation_token:
@resource
.
confirmation_token
)
%>
</p>
app/views/devise/passwords/edit.html.haml
View file @
fe07c737
=
form_for
(
resource
,
as:
resource_name
,
url:
password_path
(
resource_name
),
html:
{
method: :put
,
class:
"login-box"
})
do
|
f
|
%h3
Change your password
=
devise_error_messages!
.devise-errors
=
devise_error_messages!
=
f
.
hidden_field
:reset_password_token
%div
=
f
.
password_field
:password
,
class:
"text top"
,
placeholder:
"New password"
=
f
.
password_field
:password
,
class:
"text top"
,
placeholder:
"New password"
,
required:
true
%div
=
f
.
password_field
:password_confirmation
,
class:
"text bottom"
,
placeholder:
"Confirm new password"
=
f
.
password_field
:password_confirmation
,
class:
"text bottom"
,
placeholder:
"Confirm new password"
,
required:
true
%div
.clearfix.append-bottom-10
=
f
.
submit
"Change my password"
,
class:
"btn btn-primary"
...
...
app/views/devise/passwords/new.html.haml
View file @
fe07c737
=
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_error_messages!
=
f
.
email_field
:email
,
placeholder:
"Email"
,
class:
"text"
%br
/
%br
/
=
f
.
submit
"Reset password"
,
class:
"btn-primary btn"
.pull-right
=
link_to
"Sign in"
,
new_session_path
(
resource_name
),
class:
"btn"
%br
/
.devise-errors
=
devise_error_messages!
=
f
.
email_field
:email
,
placeholder:
"Email"
,
class:
"text"
,
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
)
app/views/devise/registrations/new.html.haml
View file @
fe07c737
=
form_for
(
resource
,
as:
resource_name
,
url:
registration_path
(
resource_name
),
html:
{
class:
"login-box"
})
do
|
f
|
%h3
.page-title
Sign Up
%br
=
devise_error_messages!
.devise-errors
=
devise_error_messages!
%div
=
f
.
text_field
:name
,
class:
"text top"
,
placeholder:
"Name"
,
required:
true
%div
...
...
@@ -15,5 +15,10 @@
%div
=
f
.
submit
"Sign up"
,
class:
"btn-create btn"
%hr
=
link_to
"Sign in"
,
new_session_path
(
resource_name
)
=
link_to
"Forgot your password?"
,
new_password_path
(
resource_name
),
class:
"pull-right"
%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.html.haml
View file @
fe07c737
...
...
@@ -17,14 +17,20 @@
=
render
'devise/sessions/oauth_providers'
if
devise_mapping
.
omniauthable?
%hr
-
if
gitlab_config
.
signup_enabled
%
hr
%div
Don't have an account?
%
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
)
-
if
extra_config
.
has_key?
(
'sign_in_text'
)
%hr
=
markdown
(
extra_config
.
sign_in_text
)
app/views/layouts/devise.html.haml
View file @
fe07c737
...
...
@@ -11,5 +11,7 @@
GitLab is open source software to collaborate on code.
%br
#{
link_to
"Sign in"
,
new_user_session_path
}
or browse for
#{
link_to
"public projects"
,
public_projects_path
}
.
%hr
%hr
.container
.content
=
yield
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