Meet Kipp at
MRC Barcelona
Join us at Booth #104 to discuss ways to improve your payment flow and minimize declined transactions.
<!-- -->
<!-- -->
$(document).ready(function(){
$("#signupForm").validate({
rules: {
first_name: {
required: true,
minlength: 3,
maxlength: 40,
},
last_name: {
required: true,
minlength: 3,
maxlength: 40,
},
email: {
required: true,
email: true,
minlength: 3,
maxlength: 80,
},
company: {
required: true,
minlength: 3,
maxlength: 40,
},
},
});
});