Skip to content
Snippets Groups Projects
Commit 460b19fa authored by Zia Fazal's avatar Zia Fazal
Browse files

fixed form submit selector

reduced left margin
parent 4f34377b
No related branches found
No related tags found
No related merge requests found
......@@ -822,7 +822,7 @@ $light-border: 1px solid $gray-l5;
// CASE: index of child is even
&:nth-child(even) {
@include margin-left($baseline*1.5);
@include margin-left($baseline);
}
.data-group {
......
......@@ -68,7 +68,7 @@ from django.core.urlresolvers import reverse
filter = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/
return filter.test(sEmail)
}
$('form input[type="submit"]').click(function(event) {
$('section.confirm-enrollment form button[type="submit"]').click(function(event) {
var is_valid_email = true;
var payment_form = $(this).parent('form');
var recipient_email = $('input[name="recipient_email"]').val();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment