HTML : un seul formulaire qui pointe vers plusieurs cibles
<form action="/maCible1" method="post">
<input type="submit" value="Envoyer vers ma seconde cible" name="submit_1" formaction="/maCible2"><!-- Envoi les données du formulaire vers /maCible2 -->
<input type="submit" value="Envoyer vers ma première cible" name="submit_2"><!-- Envoi les données du formulaire vers /maCible1 -->
</form>
Sources
- Recherche "how to get input in two different form"
- https://stackoverflow.com/questions/1692564/two-forms-share-same-input
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-formaction
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
- Recherche "html5 formaction"
- https://www.w3schools.com/tags/att_button_formaction.asp