Skip to content

Instantly share code, notes, and snippets.

@SidneyAllen
Created September 22, 2021 14:03
Show Gist options
  • Save SidneyAllen/4682ec3a30891bf258a36fac281d1b5d to your computer and use it in GitHub Desktop.
Save SidneyAllen/4682ec3a30891bf258a36fac281d1b5d to your computer and use it in GitHub Desktop.
av-bulk-update-main-html
<html>
<head>
<title>Lob Express App</title>
</head>
<body>
<h1>Lob Address Verification API</h1>
<table>
<tr>
<th>Name</th>
<th>Street</th>
<th>State</th>
<th>City</th>
<th>Zip Code</th>
</tr>
<% addresses.forEach(function(addr) { %>
<tr>
<td> <%= addr.name %> </td>
<td> <%= addr.primary_line %> </td>
<td> <%= addr.state %> </td>
<td> <%= addr.city %> </td>
<td> <%= addr.zip_code %> </td>
</tr>
<% }) %>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment