feat: update login and logout components and labels
This commit is contained in:
parent
4d781775e3
commit
486e8cc1f8
6 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { Logout } from '@/components/user/logout-button';
|
import { Logout } from '@/components/user/sso-logout-button';
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// /home/max/Git/MeetUp/src/app/login/page.tsx
|
// /home/max/Git/MeetUp/src/app/login/page.tsx
|
||||||
import { auth } from '@/auth';
|
import { auth } from '@/auth';
|
||||||
import LabeledInput from '@/components/labeled-input';
|
import LabeledInput from '@/components/labeled-input';
|
||||||
import Login from '@/components/user/login-button';
|
import Login from '@/components/user/sso-login-button';
|
||||||
import { redirect } from 'next/navigation';
|
import { redirect } from 'next/navigation';
|
||||||
|
|
||||||
import style from './login.module.css';
|
import style from './login.module.css';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.button {
|
.button {
|
||||||
background-color: var(--color-50);
|
background-color: var(--color-50);
|
||||||
border-radius: 9999px;
|
border-radius: 16px;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
outline: none;
|
outline: none;
|
||||||
border: 2px solid var(--color-100);
|
border: 2px solid var(--color-100);
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
border: 1px solid var(--textbox-75);
|
border: 1px solid var(--textbox-75);
|
||||||
border-radius: 9999px;
|
border-radius: 16px;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
background-color: var(--textbox-50);
|
background-color: var(--textbox-50);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue