Files
XP-System/views/dashboard.ejs
T
2020-11-25 09:10:06 -08:00

7 lines
154 B
Plaintext

<% if (user.role == "Teacher") { %>
<% include teacherDashboard %>
<% } %>
<% if (user.role == "Student") { %>
<% include studentDashboard %>
<% } %>