Multer Upload Example
<%- include('partials/flash.ejs') %>
Authentication
You are logged in as <%= username %> (<%= userId %>)
Users
my photos
The app has the following users:
<% users.forEach( user => { %>
<%= user.username %>
<% }) %>
Upload
<%- include('partials/upload-form.ejs') %>
Clear
all uploads
<% uploads.forEach( file => { %>
<%= file.title || 'Untitled' %> owned by <%= file.owner %>
<% }) %>