You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use this custom EJS template to style flash messages as bootstrap dismissible alerts.
<%if(messages){%><%Object.keys(messages).forEach(function(type){%><%messages[type].forEach(function(message){%><divclass="alert alert-<%= type %> alert-dismissible"role="alert"><buttontype="button"class="close"data-dismiss="alert"aria-label="Close"><spanaria-hidden="true">×</span></button><%=message%></div><%})%><%})%><%}%>