summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorPixelindustries <gitlab@pixelindustries.com>2014-02-14 15:45:41 +0100
committerPixelindustries <gitlab@pixelindustries.com>2014-02-14 15:45:41 +0100
commitc187d2795555e88f7e363399cad11f45cc778d19 (patch)
tree6d5962784ce23d484c64d8d22671a9c6685e112a /app
parent9d61ea55d15aa5b201d9be6145d4c70db4fd0de8 (diff)
downloadgitlab-ce-c187d2795555e88f7e363399cad11f45cc778d19.tar.gz
Added margin between form and button in resend-confirmation form.
Diffstat (limited to 'app')
-rwxr-xr-x[-rw-r--r--]app/views/devise/confirmations/new.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/devise/confirmations/new.html.haml b/app/views/devise/confirmations/new.html.haml
index dd63a232fe2..bf634d9de60 100644..100755
--- a/app/views/devise/confirmations/new.html.haml
+++ b/app/views/devise/confirmations/new.html.haml
@@ -3,7 +3,8 @@
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
.devise-errors
= devise_error_messages!
- = f.email_field :email, placeholder: 'Email', class: "form-control", required: true
+ .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