#✅ - How to enable a user signUp flow which only requires email in the first step (no password)?

12 messages · Page 1 of 1 (latest)

warm bane
#

I imagine something like this:

step 1 - SignUp Page: user email input + sign up button => sign up button sends email
step 2 - Verification Email: click on a button in the email opens verification/password page
step 3 - Password Page: user enters password and hits submit button
step 4 - Entry Page: user is logged in on entry page

nova bone
#

You'd have to create an admin action to enable this sign-up workflow. Are you using gen 1 or gen 2?

modest lion
#
Amazon Web Services

Having to remember passwords can be a pain, especially for passwords that you don’t use often. Like most people, you too are probably familiar with having to click the “forgot password” link or button on websites and apps. Many people are tempted to use bad practices such as using short passwords, using easily guessable passwords, […]

warm bane
warm bane
warm bane
#

And we use aws-cdk-lib for the infrastructure, for example aws-cdk-lib/aws-lambda for lambdas.

nova bone
#

I think you're looking for this. In this case, you'd want to create a user dircetly into the "FORCE_CHANGE_PASSWORD" state. You should definitely use Admin actions carefully. As you effectively have to manage the API endpoint and all of its added DevOps overhead (throttling, rate limiting, fraud prevention etc.)

warm bane
#

I agree on the admin actions part

silk loomBOT
#

✅ - How to enable a user signUp flow which only requires email in the first step (no password)?