Commit 69cb554bea2c3924f922a104829bf70425e96545

Authored by Leandro Santos
2 parents 4b8995e1 4d2fe59a

Merge branch 'master' of https://gitlab.com/participa/proposal-app

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
index.html
... ... @@ -447,7 +447,7 @@
447 447 Digite os caracteres acima:
448 448 </div>
449 449 <div class="captcha col-sm-6">
450   - <input type="text" name="captcha_text" >
  450 + <input type="text" name="captcha_text" id="captcha_text">
451 451 </div>
452 452 <div id="terms-of-use-box" class="col-sm-12">
453 453 <div class="checkbox">
... ...
js/main.js
... ... @@ -1175,7 +1175,7 @@ define([&#39;jquery&#39;, &#39;handlebars&#39;, &#39;fastclick&#39;, &#39;handlebars_helpers&#39;, &#39;piwik&#39;], fun
1175 1175 var $inputPassword = $signupForm.find('#signup-user_password');
1176 1176 var $inputPasswordConfirmation = $signupForm.find('#user_password_confirmation');
1177 1177 var $inputAcceptation = $signupForm.find('#user_terms_accepted');
1178   - var $inputCaptcha = $signupForm.find('#recaptcha_response_field');
  1178 + var $inputCaptcha = $signupForm.find('#captcha_text');
1179 1179  
1180 1180 // clear messages
1181 1181 var message = $('.signup .message');
... ...