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/frontend/app/insecure-test-mode-banner.tsx
Views: 687
1
import { Alert } from "antd";
2
import { A } from "@cocalc/frontend/components/A";
3
4
export default function InsecureTestModeBanner() {
5
return (
6
<Alert
7
banner
8
type="warning"
9
showIcon
10
style={{ background: "darkred", color: "white" }}
11
message={
12
<div style={{ textAlign: "center" }}>
13
<A
14
href="https://cocalc.com/pricing/onprem"
15
style={{ color: "white" }}
16
>
17
<b>WARNING:</b> This is CoCalc OnPrem running in{" "}
18
<b>A HIGHLY INSECURE TRIAL MODE</b>.
19
</A>
20
</div>
21
}
22
/>
23
);
24
}
25
26