shinshinshin123 / next-todo-app

https://next-todo-app-5993.vercel.app
0 stars 0 forks source link

新規登録 #6

Closed shinshinshin123 closed 1 year ago

shinshinshin123 commented 1 year ago

/signup

画面パーツ ・IDパスワード入力欄 ・ユーザー名入力欄 ・新規登録ボタン

・ログインはこちら

機能 ・ユーザー登録

データ ・メールアドレス ・パスワード(半角英数8文字以上) ・Googleアカウント

shinshinshin123 commented 1 year ago
const handleSignup = async (e:any) => {
    e.preventDefault();
    setIsLoading(true);
    try {
      const { email, password, userName } = formData;
      const { user } = await auth.createUserWithEmailAndPassword(email, password);
      await user.updateProfile({ userName });
      router.push('/')
    } catch (error) {
      console.error(error);
    } finally {
      setIsLoading(false);
    }
  };

createUserWithEmailAndPasswordの部分でエラーを吐いているので新規登録することができないでいる。