Add reCAPTCHA support to registration.

Because I *hate* spam bots.
This commit is contained in:
James Mason 2017-11-03 17:41:26 -07:00
parent 464b148321
commit a7fce677fc
No known key found for this signature in database
GPG key ID: 1B3951886C449023
6 changed files with 52 additions and 9 deletions

View file

@ -12,6 +12,7 @@
= f.input :name, input_html: { required: true }, hint: 'This is your real name'
= f.input :password, input_html: { required: true }
= f.input :password_confirmation, input_html: { required: true }
= recaptcha_tags
%p.text-right
= f.action :submit, as: :button, label: 'Sign Up', button_html: { class: 'btn btn-success' }