I'm a making a form but clicking on that form's submit button doesn't take me to the right path.
<form action="delete" method="post">
<button type="button">Cancel</button>
<button type="submit">Delete</button>
</form>
It should take me to http://localhost:5000/<id>/delete
(In place of will be the user ID)
But it takes me to http://localhost:5000/delete
And http://localhost:5000/<id>/delete
is a webpage not a file. Which means that this web site is not static, it's dynamic.
What am I doing wrong here?