u can show html form in post or page like that…
<table class=”table table-bordered”>
<thead>
<tr>
<th>#</th>
<th>first Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Phone</th>
<th>Vehicle</th>
<th>Trip Type</th>
<th>Pickup Location</th>
<th>Destination</th>
<th>Pickup Date</th>
</tr>
</thead>
<tbody>
[cfdb-html form=”booking” filter=”Submitted Login=$user_login”]
<tr>
<th scope=”row”>${id}</th>
<td>${first-name}</td>
<td>${last-name}</td>
<td>${your-email}</td>
<td>${phone}</td>
<td>${vehicle}</td>
<td>${trip-type}</td>
<td>${pickup-location}</td>
<td>${destination}</td>
<td>${pickup-date}</td>
</tr>
[/cfdb-html]
</tbody>
</table>
</body