Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-11 17:05:57 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-11 17:05:57 +0400
commit6d332ce146b634e18b12e2476ace3955d7d33290 (patch)
treea9851182d80a32b36531e11c2c1bd3d9c727b5e2 /app/views/devise/confirmations/new.html.haml
parentf4fbc7b92b8dc0ed94524a79326c073560845d1b (diff)
Improve signin/signup/reset pages UI
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/devise/confirmations/new.html.haml')
-rwxr-xr-xapp/views/devise/confirmations/new.html.haml28
1 files changed, 13 insertions, 15 deletions
diff --git a/app/views/devise/confirmations/new.html.haml b/app/views/devise/confirmations/new.html.haml
index bf634d9de60..08e17490865 100755
--- a/app/views/devise/confirmations/new.html.haml
+++ b/app/views/devise/confirmations/new.html.haml
@@ -1,15 +1,13 @@
-.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'