41 lines
855 B
TypeScript
41 lines
855 B
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { signUp } from '../client';
|
|
|
|
export const SignUp = () => {
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [name, setName] = useState('');
|
|
|
|
return (
|
|
<form
|
|
onSubmit={async (e) => {
|
|
e.preventDefault();
|
|
await signUp.email({
|
|
email,
|
|
password,
|
|
name,
|
|
});
|
|
}}
|
|
>
|
|
<input
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
/>
|
|
<input
|
|
type="password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
/>
|
|
<input
|
|
type="text"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
/>
|
|
<button type="submit">Sign up</button>
|
|
</form>
|
|
);
|
|
};
|