Added some text to the site.
This commit is contained in:
parent
9a51266fd3
commit
93a9aef838
|
@ -1,4 +1,7 @@
|
|||
<script setup lang="ts"></script>
|
||||
<script setup lang="ts">
|
||||
import { EMOJI_ABSENT, EMOJI_BEHAVIOR_GOOD, EMOJI_BEHAVIOR_MEDIOCRE, EMOJI_BEHAVIOR_POOR, EMOJI_PHONE_COMPLIANT, EMOJI_PHONE_NONCOMPLIANT, EMOJI_PRESENT } from '@/api/classroom_compliance';
|
||||
|
||||
</script>
|
||||
<template>
|
||||
<main>
|
||||
<h1>Classroom Compliance</h1>
|
||||
|
@ -7,9 +10,11 @@
|
|||
like:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Attendance</li>
|
||||
<li>Phone Usage (or lack thereof)</li>
|
||||
<li>Behavior</li>
|
||||
<li>Attendance: {{ EMOJI_PRESENT }} - Present, {{ EMOJI_ABSENT }} - Absent</li>
|
||||
<li>Phone Usage (or lack thereof): {{ EMOJI_PHONE_COMPLIANT }} - Compliant, {{ EMOJI_PHONE_NONCOMPLIANT }} -
|
||||
Noncompliant</li>
|
||||
<li>Behavior: {{ EMOJI_BEHAVIOR_GOOD }} - Good, {{ EMOJI_BEHAVIOR_MEDIOCRE }} - Mediocre, {{ EMOJI_BEHAVIOR_POOR
|
||||
}} - Poor</li>
|
||||
</ul>
|
||||
<hr />
|
||||
|
||||
|
|
|
@ -37,6 +37,15 @@ async function doLogin() {
|
|||
<div class="button-bar">
|
||||
<button type="button" @click="doLogin">Login</button>
|
||||
</div>
|
||||
<div>
|
||||
<p>
|
||||
If you forgot your password or would like to create an account, please contact <a
|
||||
href="https://andrewlalis.com/contact">Andrew Lalis</a> for assistance.
|
||||
</p>
|
||||
<p>
|
||||
For security purposes, refreshing this site or closing your browser will log you out.
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue