Login/logout process.

This commit is contained in:
Mike Cao 2020-07-25 16:31:07 -07:00
parent 0f0b1e39e7
commit f947c7770b
10 changed files with 91 additions and 58 deletions

17
pages/login.js Normal file
View file

@ -0,0 +1,17 @@
import React from 'react';
import Link from 'next/link';
import Layout from 'components/Layout';
import Login from 'components/Login';
export default function LoginPage() {
return (
<Layout title="Login">
<Login />
<p>
<Link href="/test">
<a>Test page 🡒</a>
</Link>
</p>
</Layout>
);
}