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-08-15 18:52:20 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-08-15 18:52:20 +0400
commitd28a27f7c434b03b8e715af8be628a86f44188a3 (patch)
treec202440b87217b14ee3ab3ddf41c12e94a12b72a /app/views/devise/confirmations
parentcb33279a0f36f2c6a70d5ecf00bbd8749b92c51b (diff)
Cleaner UI for login/signup pages
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/devise/confirmations')
-rwxr-xr-xapp/views/devise/confirmations/new.html.haml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/devise/confirmations/new.html.haml b/app/views/devise/confirmations/new.html.haml
index 08e17490865..8d17f39eba2 100755
--- a/app/views/devise/confirmations/new.html.haml
+++ b/app/views/devise/confirmations/new.html.haml
@@ -1,7 +1,7 @@
-.login-box.panel.panel-default
- .panel-heading
- %h3.panel-title Resend confirmation instructions
- .panel-body
+.login-box
+ .login-heading
+ %h3 Resend confirmation instructions
+ .login-body
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
.devise-errors
= devise_error_messages!
@@ -9,5 +9,5 @@
= 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
+ .login-footer
= render 'devise/shared/sign_in_link'