I'm starting in Django and making some code changes already written by someone. I noticed that in form instead of the usual "/action page"
where the data will be submitted, such as in this W3Schools example:
<form action="/action_page.php" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
</form>
the attribute action
has a point, why?
<form action="." method="post">