7 lines
154 B
Plaintext
7 lines
154 B
Plaintext
<% if (user.role == "Teacher") { %>
|
|
<% include teacherDashboard %>
|
|
<% } %>
|
|
<% if (user.role == "Student") { %>
|
|
<% include studentDashboard %>
|
|
<% } %>
|