23 lines
307 B
Text
23 lines
307 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<% include ../partials/header.ejs %>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<% include ../partials/nav.ejs %>
|
|
|
|
<div class="container">
|
|
<h2>Database Results</h2>
|
|
|
|
<ul>
|
|
<% results.forEach(function(r) { %>
|
|
<li><%= r.id %> - <%= r.name %></li>
|
|
<% }); %>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|