Commit 5cf5c177 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

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.
parents bbf8fd2e c187d279
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment