Commit e894e3eea505ebd675b90c3c53382fd8f273ced8

Authored by Dmitriy Zaporozhets
1 parent 95875061

Restyle sign-in page. Mention public projects

app/assets/images/login-logo.png

9.97 KB

app/assets/stylesheets/sections/login.scss
1 1 /* Login Page */
2 2 body.login-page{
3   - background: #474D57;
4   - .container .content { padding-top: 4%; }
  3 + .container > .content {
  4 + padding-top: 20px;
  5 + }
5 6 }
6 7  
7 8 .login-box{
... ...
app/views/layouts/devise.html.haml
... ... @@ -6,5 +6,10 @@
6 6 .container
7 7 .content
8 8 %center
9   - = image_tag image_path "login-logo.png"
  9 + %h1 GitLab
  10 + %p.light
  11 + GitLab is open source software to collaborate on code.
  12 + %br
  13 + #{link_to "Sign in", new_user_session_path} or browse for #{link_to "public projects", public_projects_path}.
  14 + %hr
10 15 = yield
... ...