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
11
src/components/user/login-button.tsx
Normal file
11
src/components/user/login-button.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import Button from '../button';
|
||||
|
||||
export default function Login() {
|
||||
return (
|
||||
<form>
|
||||
<Button type='submit' mode='primary' width={250}>
|
||||
Login
|
||||
</Button>
|
||||
</form>
|
||||
);
|
||||
}
|
|
@ -2,7 +2,7 @@ import { signIn } from '@/auth';
|
|||
import Button from '../button';
|
||||
import { faOpenid } from '@fortawesome/free-brands-svg-icons';
|
||||
|
||||
export default function Login({
|
||||
export default function SSOLogin({
|
||||
provider,
|
||||
providerDisplayName,
|
||||
}: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue