Commit 5cf5c177df6b4b999e8a687b029449060ff40d5e

Authored by Dmitriy Zaporozhets
2 parents bbf8fd2e c187d279

Merge branch 'add-margin-to-resend-form' into 'master'

Add Margin to Resend Confirmation Form

I fixed this issue on the "Reset Password"-form (https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20), but found it is also occuring on the "Resend Confirmation"-form. There currently is no margin between the input (email-address) and button. This commit is a simple fix.
Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
app/views/devise/confirmations/new.html.haml 100644 → 100755
... ... @@ -3,7 +3,8 @@
3 3 = form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
4 4 .devise-errors
5 5 = devise_error_messages!
6   - = f.email_field :email, placeholder: 'Email', class: "form-control", required: true
  6 + .clearfix.append-bottom-20
  7 + = f.email_field :email, placeholder: 'Email', class: "form-control", required: true
7 8 .clearfix.append-bottom-10
8 9 = f.submit "Resend confirmation instructions", class: 'btn btn-success'
9 10 %hr
... ...