bradtraversy / node_passport_login

Node.js login, registration and access control using Express and Passport
1.73k stars 1.3k forks source link

SyntaxError: Unexpected token '/' #117

Open retex73 opened 2 years ago

retex73 commented 2 years ago

In login.ejs the include partial generated an error "SyntaxError: Unexpected token '/'.."

The fix for me was to change how the partial was referenced

from this

<% include ./partials/messages %>

to this

<%- include ("./partials/messages") %>

Hope that helps someone