I have a form in a modal that collects name/email and put it in a header symbol so that it can be called from any page. You can check it out in the header here.
When someone fills out the form, I want to pass those as parameters to our web app.
&name=<name>&email=<email>
I got that working by putting the signup URL of our web app in Action.
But it seems like, when I do that, the data isn’t stored in Forms in Settings. Is there any way to both, save the data and send those parameters?
I have custom code that does this on other pages, but it doesn’t seem to work on this header modal.
<script>
$('form').submit(function() {
setTimeout(function() {
location.href = 'https://app.burb.co/authentication/register?email=' + $('#email').val() + '&name=' + $('#name').val() + '&lmref={{wf {"path":"affiliate-slug","type":"PlainText"\} }}';
}, 100);
});
</script>
Is there something easy I’m missing for storing form data as well as sending parameters?