Bootstrap forms not appending data in the url via get method

If i submit basic form via get method , data is appended to the URL , but when i used Bootstrap form, the dont see any data being appended. How to fix this?

html -> http://127.0.0.1:5500/day7.html when form is submitted http://127.0.0.1:5500/values.html?fname=as&lname=as

bootstrap form -> http://127.0.0.1:5500/day7.html when form is submitted  http://127.0.0.1:5500/values.html?


i dont see fname=as&lname=as data being appeneded ivia url in bootstrap
Was this page helpful?