[+] Add a friendly note to seniors in the course selection page

This commit is contained in:
Hykilpikonna
2020-04-11 19:18:43 -04:00
parent d974fb24a0
commit ba84861628
@@ -2,10 +2,14 @@
<div id="course-selection"> <div id="course-selection">
<el-card id="info"> <el-card id="info">
<div class="header">Course Selection</div> <div class="header">Course Selection</div>
<div class="content"> <div class="content" v-if="app.user.gradeLevel < 12">
This new page is designed to help you with your course selection next year, This new page is designed to help you with your course selection next year,
providing more information such as how many people are currently enrolled in a course. providing more information such as how many people are currently enrolled in a course.
</div> </div>
<div class="content" v-if="app.user.gradeLevel >= 12">
You are a senior, what are you doing over here lol. <br>
Unfortunately I can't help you with college course selection.
</div>
</el-card> </el-card>
</div> </div>
</template> </template>