CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/policies/ferpa.tsx
Views: 687
1
import Footer from "components/landing/footer";
2
import Header from "components/landing/header";
3
import Head from "components/landing/head";
4
import { Layout } from "antd";
5
import withCustomize from "lib/with-customize";
6
import { Customize } from "lib/customize";
7
import { MAX_WIDTH } from "lib/config";
8
9
export default function FERPA({ customize }) {
10
return (
11
<Customize value={customize}>
12
<Head title="FERPA Policy" />
13
<Layout>
14
<Header page="policies" subPage="ferpa" />
15
<Layout.Content
16
style={{
17
backgroundColor: "white",
18
}}
19
>
20
<div
21
style={{
22
maxWidth: MAX_WIDTH,
23
margin: "15px auto",
24
padding: "15px",
25
backgroundColor: "white",
26
}}
27
>
28
<div style={{ textAlign: "center", color: "#444" }}>
29
<h1 style={{ fontSize: "28pt" }}>
30
CoCalc - FERPA Compliance Statement
31
</h1>
32
<h2>Last Updated: September 1, 2020</h2>
33
</div>
34
<div style={{ fontSize: "12pt" }}>
35
<div>
36
<p>
37
Educational institutions must take steps to ensure that the
38
companies that they work with will help comply with FERPA.
39
FERPA requires that reasonable measures be taken to ensure the
40
security of personally identifiable information (PII) from
41
student academic records. PII may only be shared with a
42
student's instructor or other school officials (the school is
43
responsible for responding to parent requests for
44
information). Schools and educators are allowed to divulge
45
'directory information', such as name and email address,
46
unless a student has asked to opt-out of directory information
47
disclosure, which means that in most cases instructors may
48
submit student email addresses when adding students to a
49
course.
50
</p>
51
<p>
52
SageMath, Inc. will make every effort to comply with FERPA
53
disclosures policies. If you represent an academic institution
54
and require access to a student's PII under FERPA, please
55
contact{" "}
56
<a href="mailto:[email protected]">[email protected]</a>.
57
</p>
58
</div>
59
</div>
60
</div>
61
<Footer />
62
</Layout.Content>
63
</Layout>
64
</Customize>
65
);
66
}
67
68
export async function getServerSideProps(context) {
69
return await withCustomize({ context });
70
}
71
72