-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
155 lines (144 loc) · 5.91 KB
/
faq.html
File metadata and controls
155 lines (144 loc) · 5.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>abSENT - Terms of Service</title>
<link rel="stylesheet" href="index.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicons/favicon-16x16.png"
/>
<link rel="manifest" href="favicons/site.webmanifest" />
<link
rel="mask-icon"
href="favicons/safari-pinned-tab.svg"
color="#ef4344"
/>
<link rel="shortcut icon" href="favicons/favicon.ico" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta
name="msapplication-config"
content="favicons/browserconfig.xml"
/>
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<header class="header">
<a class="header-content-link" href="index.html">
<div class="header-content">
<img
id="logo"
alt-text="abSENT Logo"
title="abSENT Logo"
src="images/logo-white.svg"
/>
<h2 id="subtitle">Cancelled classes at your fingertips.</h2>
</div>
</a>
</header>
<main class="main">
<h1 class="title">Frequently Asked Questions</h1>
<h1>I need help!</h1>
<p>
We're sorry you're having issues with abSENT. Please feel free
to reach out to us and ask us for help. You can reach us by
email at
<a href="mailto:hello@absent.cc">hello@absent.cc</a>. You can
also find us on Instagram at
<a href="https://www.instagram.com/absent.cc/">@absent.cc</a>.
We're here to help.
</p>
<h1>What is it?</h1>
<p>
abSENT is a notification service written in Python, that sends
you a notification whenever your teachers are abSENT. abSENT is
a hobby project of
<a href="https://rkarim.xyz">Roshan Karim</a> (NNHS '24),
<a href="https://leah.vashevko.com">Leah Vashevko</a> (NSHS
'24), and
<a href="https://github.com/bykevinyang/">Kevin Yang</a> (NSHS
'24), who got tired of refreshing a website constantly in the
morning. Because of this inter-school colloboration, abSENT
works for both North and South.
</p>
<h1>How does it work?</h1>
<p>
You download our mobile app and enter in class information.
abSENT is completely free. Once we recieve all the information
we need, we download the absence list every morning and let you
know if your teachers are on it. For you, it's that simple!
</p>
<h1>Why do I need this?</h1>
<p>
After going to Newton High Schools and experiencing the absence
list for two years, something had to be done. It's an annoying
way of learning about absent teachers, it's often posted very
late, and it's never posted at a consistent time. In the
morning, when other things need to get done, this isn't
acceptable. Thus, abSENT.
</p>
<h1>How can I help?</h1>
<p>
While the codebase is mostly in a maintenance state right now
and help isn't needed with it, there are others ways to help.
<a href="mailto:hello@absent.cc">React out to us</a> if you
notice a bug or regression. And of course, if you can, donate to
help us out with the server costs.
</p>
<h1>More Info</h1>
<ul>
<li>
Occasionally, abSENT will push announcements including
information on new feature updates or general goings-on
within the schools.
</li>
<li>
Disclaimer: abSENT is not affiliated with Newton Public
Schools, Newton North or Newton South, nor is it endorsed by
any of the afformentioned organizations. abSENT utilizies
API credentials granted automatically by the NPS Schoology
system.
</li>
</ul>
</main>
<footer>
<p>
Made with ❤️ by the abSENT team:
<a href="https://rkarim.xyz">Roshan Karim</a>,
<a href="https://leah.vashevko.com">Leah Vashevko</a>, and
<a href="https://github.com/bykevinyang/">Kevin Yang</a>.
</p>
<p>
<a href="terms.html">Terms of Service</a>
</p>
<p>
abSENT is not affiliated with, endorsed by, or in any way
officially connected with the Newton Public Schools.
</p>
<p>Copyright © 2021-2022 abSENT</p>
<p>Have a great day!</p>
</footer>
<svg>
<defs>
<clipPath id="wave" clipPathUnits="objectBoundingBox">
<path d="m 0 0 v 0.9 c 0.5 0.3 0.5 -0.3 1 0 l 0 -0.9 z" />
</clipPath>
</defs>
</svg>
</body>
</html>