mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Login/logout process.
This commit is contained in:
parent
0f0b1e39e7
commit
f947c7770b
10 changed files with 91 additions and 58 deletions
17
pages/login.js
Normal file
17
pages/login.js
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue