feat: trying to add normal login button
This commit is contained in:
parent
486e8cc1f8
commit
710db0a991
3 changed files with 17 additions and 2 deletions
|
@ -7,6 +7,8 @@ import { redirect } from 'next/navigation';
|
|||
import style from './login.module.css';
|
||||
|
||||
import '@/app/globals.css';
|
||||
import SSOLogin from '@/components/user/sso-login-button';
|
||||
import Login from '@/components/user/login-button';
|
||||
|
||||
export default async function LoginPage() {
|
||||
const session = await auth();
|
||||
|
@ -32,9 +34,11 @@ export default async function LoginPage() {
|
|||
/>
|
||||
</form>
|
||||
|
||||
<Login provider={''} providerDisplayName={''}></Login>
|
||||
|
||||
<hr style={{ width: 230 }} />
|
||||
|
||||
<Login provider='authentik' providerDisplayName='SSO' />
|
||||
<SSOLogin provider='authentik' providerDisplayName='SSO' />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue