I have a body with X detailed information collecting data from several .php files with connections to a database.
I want to add to this file .php two buttons, "Back" and "Next". I want both buttons to be in the lower left margin (Back) and the lower right margin (Next).
How should the style be added so that both buttons are at the same level but each one on one side?
For each button must there be a form or can it be a set? I have to say that the functionality of each button is different.
<form action="reservar.php" name="mireserva" id="mireserva" method="POST" style="text-align:center">
<input type="submit" value="Atrás" name="atras" id="atras">
</form>
<form action="confirmar.php" name="miconfirmar" id="miconfirmar" method="POST" style="text-align:center">
<input type="submit" value="Confirmar" name="confirmar" id="confirmar">
</form>