Files
Mastering-Node.js-Web-Devel…/Chapter 13/End of Chapter/part2app/templates/server/formData.handlebars
T
2024-05-29 18:54:49 +01:00

11 lines
310 B
Handlebars

<table class="table table-sm table-striped">
<thead>
<tr><th>Field</th><th>Value</th></tr>
</thead>
<tbody>
<tr><td>Name:</td><td>{{ name }} </td></tr>
<tr><td>City:</td><td>{{ city }} </td></tr>
<tr><td>File:</td><td>{{ fileData }} </td></tr>
</tbody>
</table>