Path: blob/master/src/packages/next/pages/auth/password-reset.tsx
1450 views
/*1* This file is part of CoCalc: Copyright © 2021 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Layout } from "antd";6import PasswordReset from "components/auth/password-reset";7import Footer from "components/landing/footer";8import Head from "components/landing/head";9import Header from "components/landing/header";10import { Customize } from "lib/customize";11import withCustomize from "lib/with-customize";1213export default function Home({ customize }) {14return (15<Customize value={customize}>16<Head title={"Forgot your Password?"} />17<Layout>18<Header page="sign-in" />19<Layout.Content style={{ backgroundColor: "white" }}>20<PasswordReset />21<Footer />22</Layout.Content>23</Layout>24</Customize>25);26}2728export async function getServerSideProps(context) {29return await withCustomize({ context });30}313233