I have a form written in html on a page and there is a button above the form. Now i want to know the functionality i can add to the button so that when i press the button, it will directly add the same form i have on the page already just beneath it so i can make multiple submissions.
//form
<button>Add Form</button>
<form>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="title">Title</label>
<input type="text" class="form-control" id="title" name="title" placeholder="Title">
</div>
</div>
</form>