34 lines
686 B
TypeScript
34 lines
686 B
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { signIn } from '../client';
|
|
|
|
export const SignIn = () => {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
|
|
return (
|
|
<form
|
|
onSubmit={async (e) => {
|
|
e.preventDefault();
|
|
await signIn.email({
|
|
email,
|
|
password,
|
|
});
|
|
}}
|
|
>
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
/>
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
/>
|
|
<button type="submit">Sign in</button>
|
|
</form>
|
|
);
|
|
};
|