Path: blob/master/src/packages/frontend/components/login-link.tsx
5842 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Alert } from "antd";6import { Icon } from "./icon";7import Next from "@cocalc/frontend/components/next";8import { SiteName } from "@cocalc/frontend/customize";910export function LoginLink() {11return (12<Alert13type="warning"14style={{ margin: "15px" }}15description={16<div style={{ fontSize: "12pt" }}>17<Icon18name="sign-in"19style={{ fontSize: "13pt", marginRight: "10px" }}20/>{" "}21Please{" "}22<Next sameTab href="/auth/sign-in">23login to <SiteName />24</Next>{" "}25or{" "}26<Next sameTab href="/auth/sign-up">27create a <SiteName /> account28</Next>29...30</div>31}32/>33);34}353637