Something like this perhaps?
Demo: Pass form field to redirect URL
Share link: Webflow - Sandbox
<script>
Webflow.push(function() {
$('form').submit(function() {
setTimeout(function() {
location.href = 'https://samliew.com/webflow-expert?email=' + $('#email').val();
}, 100);
});
});
</script>
It gets redirected to another form and the target page auto-fills the email.
Another Demo: Form 1