Amplifyでサインイン画面をカスタマイズする方法【React】
やりたいこと
次のようにセルフサインアップ(Create Account)をさせたくないときなど、項目を調整したい場合のメモ
方法
次のように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
Author And Source
この問題について(Amplifyでサインイン画面をカスタマイズする方法【React】), 我々は、より多くの情報をここで見つけました https://qiita.com/mktu/items/4862df56f78537fa89d4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .