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>
|
<template>
|
||||||
<main>
|
<main>
|
||||||
<h1>Classroom Compliance</h1>
|
<h1>Classroom Compliance</h1>
|
||||||
|
@ -7,9 +10,11 @@
|
||||||
like:
|
like:
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Attendance</li>
|
<li>Attendance: {{ EMOJI_PRESENT }} - Present, {{ EMOJI_ABSENT }} - Absent</li>
|
||||||
<li>Phone Usage (or lack thereof)</li>
|
<li>Phone Usage (or lack thereof): {{ EMOJI_PHONE_COMPLIANT }} - Compliant, {{ EMOJI_PHONE_NONCOMPLIANT }} -
|
||||||
<li>Behavior</li>
|
Noncompliant</li>
|
||||||
|
<li>Behavior: {{ EMOJI_BEHAVIOR_GOOD }} - Good, {{ EMOJI_BEHAVIOR_MEDIOCRE }} - Mediocre, {{ EMOJI_BEHAVIOR_POOR
|
||||||
|
}} - Poor</li>
|
||||||
</ul>
|
</ul>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,15 @@ async function doLogin() {
|
||||||
<div class="button-bar">
|
<div class="button-bar">
|
||||||
<button type="button" @click="doLogin">Login</button>
|
<button type="button" @click="doLogin">Login</button>
|
||||||
</div>
|
</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>
|
</form>
|
||||||
</main>
|
</main>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue