I've been trying to create a table created by JavaScript. I finally found a way to create the table, but I lack the knowledge to put an input tag and a form into this table
var table = document.getElementById("myTable");
var row = table.insertRow(0);
var cell1 = row.insertCell(0);
var cell2 = row.insertCell(1);
cell1.innerHTML = "Replace this with other input";
cell2.innerHTML = "Replace this with input";
The style is irrelevant, I have all the code I need behind that