<%- include("../base/header", { title: typeof(party) === "undefined" ? "Create Party" : `Editing ${party.Name}`, userId: session.userId }) %> <% if (typeof(party) === "undefined") { %>

Create Party

<% } else { %>

Editing <%= party.Name %>

<% } %>
<% if (typeof(error) === "string") { %>
<%= error %>
<% } %>
" required />
" required />
<%- include("../base/footer") %>