1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Amplifyでサインイン画面をカスタマイズする方法【React】

Posted at

やりたいこと

次のようにセルフサインアップ(Create Account)をさせたくないときなど、項目を調整したい場合のメモ
image.png

方法

次のようにAmplifyAuthenticatorを使うと実現できます

import React, { useContext } from 'react'
import { AmplifyAuthenticator, AmplifySignIn } from '@aws-amplify/ui-react'

// サインアップを隠す場合はhideSignUp属性を指定
const Signin = () =>(
    <AmplifyAuthenticator >
        <AmplifySignIn slot="sign-in" hideSignUp></AmplifySignIn>
    </AmplifyAuthenticator>
)

参考

こちらがソースですが、公式からはちょっとたどり着きにくい場所にあります
https://docs.amplify.aws/ui/auth/authenticator/q/framework/react

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?