I have an HTML page with an empty table and when I click on a button, it points me to another page where I have 5 inputs, what I want to do in javascript is to put the result of these 5 inputs in the table on the previous page. p>
Page 1, name = Calendar.html:
....
<table id="myTable2">
<thead>
<tr>
<th>Disciplina</th>
<th>Método de avaliação</th>
<th>Data da avaliação</th>
<th>Antecedência</th>
<th>Duração por dia</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<a href="CriarPlanoDeEstudo.html"><button type="button">Criar plano de estudo</button></a><br>
.....
Page 2, name = CreateStudyPlan.html
Antecedência: <input type="text" name="nome" id="antecedencia" placeholder="Dias de antecedencia"><br><p></p>
Data do Método: <input type="date" id="datadometodo" ><br><p></p>
Disciplina: <div id="disciplina"> </div>
Duração por dia: <input type="text" name="nome" id="duracaopordia" placeholder="Duração em horas"> <br><p></p>
Método de avaliação: <input type="text" name="nome" id="metododeavaliaçao" placeholder="Nome do método"> <br><p></p>
<a href="Calendario.html"><button type="button" id="concluir" >Concluir</button></a>