Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/next/pages/policies/ferpa.tsx
Views: 687
import Footer from "components/landing/footer";1import Header from "components/landing/header";2import Head from "components/landing/head";3import { Layout } from "antd";4import withCustomize from "lib/with-customize";5import { Customize } from "lib/customize";6import { MAX_WIDTH } from "lib/config";78export default function FERPA({ customize }) {9return (10<Customize value={customize}>11<Head title="FERPA Policy" />12<Layout>13<Header page="policies" subPage="ferpa" />14<Layout.Content15style={{16backgroundColor: "white",17}}18>19<div20style={{21maxWidth: MAX_WIDTH,22margin: "15px auto",23padding: "15px",24backgroundColor: "white",25}}26>27<div style={{ textAlign: "center", color: "#444" }}>28<h1 style={{ fontSize: "28pt" }}>29CoCalc - FERPA Compliance Statement30</h1>31<h2>Last Updated: September 1, 2020</h2>32</div>33<div style={{ fontSize: "12pt" }}>34<div>35<p>36Educational institutions must take steps to ensure that the37companies that they work with will help comply with FERPA.38FERPA requires that reasonable measures be taken to ensure the39security of personally identifiable information (PII) from40student academic records. PII may only be shared with a41student's instructor or other school officials (the school is42responsible for responding to parent requests for43information). Schools and educators are allowed to divulge44'directory information', such as name and email address,45unless a student has asked to opt-out of directory information46disclosure, which means that in most cases instructors may47submit student email addresses when adding students to a48course.49</p>50<p>51SageMath, Inc. will make every effort to comply with FERPA52disclosures policies. If you represent an academic institution53and require access to a student's PII under FERPA, please54contact{" "}55<a href="mailto:[email protected]">[email protected]</a>.56</p>57</div>58</div>59</div>60<Footer />61</Layout.Content>62</Layout>63</Customize>64);65}6667export async function getServerSideProps(context) {68return await withCustomize({ context });69}707172