Files
XP-System/views/dashboard.ejs
T
2020-12-01 13:20:36 -08:00

8 lines
193 B
Plaintext

<!-- Shows user specific Dashboard -->
<% if (user.role == "Teacher") { %>
<% include teacherDashboard %>
<% } %>
<% if (user.role == "Student") { %>
<% include studentDashboard %>
<% } %>