I have this code and I wanted to know how best to get the user to push a button and, from there, store the data requested by the page in the JS object and, after that, display the message written in the code . Could someone help? Thank you.
JS
var aluno = new Object ()
aluno.nome = document.getElementById("nome");
aluno.telefone = document.getElementById("telefone");
aluno.matricula = document.getElementById("matricula");
aluno.curso = new Object ()
curso.nome = document.getElementById("curso");
curso.campus = document.getElementById("campus");
curso.turno = document.getElementById("turno");
document.write ("Olá " + aluno.nome + ", seu telefone é: " + aluno.telefone + " e sua matrícula é: " +
aluno.matricula + "." + " Você está matriculado no curso " + curso.nome + ", no campus " + curso.campus +
" durante a parte da " + curso.turno)
HTML
<h4>Dados do Aluno</h6>
<p>Informe o seu nome: <input type="text" id="nome"></p>
<p>Informe o seu telefone: <input type="number=" id="telefone"></p>
<p>Informe a sua matrícula: <input type="number" id="matricula"></p>
</div>
<div class="curso">
<h4>Dados do Curso</h6>
<p>Informe o nome do seu curso: <input type="text" id="curso"></p>
<p>Informe o seu campus: <input type="text=" id="campus"></p>
<p>Informe a seu turno: <input type="text" id="turno"></p>
</div>