I have a form and I just want a simple jquery message box that displays all the users input before submission and confirming to submit. I'm new to jquery. Any help is highly appreciated. Thanks. Here's my form.
<form role="form" id="form-field" action="inc/Controller/OperatorController.php" method="post" enctype="multipart/form-data" onsubmit="return validateForm();">
<div class="form-group">
<label>Last Name</label><span class="label label-danger">*required</span>
<input class="form-control" placeholder="Enter Last Name" name="lastname" id="lastname">
</div>
<div class="form-group">
<label>First Name</label><span class="label label-danger">*required</span>
<input class="form-control" placeholder="Enter First Name" name="firstname" id="firstname">
</div>
<div class="form-group">
<label>Address</label>
</div>
<input type="submit" name="btn" value="Submit" id="submit" class="btn btn-default"/>
<input type="button" name="btn" value="Reset" onclick="window.location='fillup.php'" class="btn btn-default"/>
</form>