I was trying to modify a Google Form with CSS, so I just copied the form "action" and the "name" attribute and add it to my custom web page. But after I submit the form it redirects to the Google Form's default success page.
Is there a way I can stop it from the redirection, or redirect it to the same page rather than Google Form's success page ?
<form action="Google Form's action attrib">
<input type="text" name="google form's name attrib">
<input type="text" name="google form's name attrib">
<button type="submit">submit</button>
</form>