4
2 Comments

How to on-board user with only email and payment info, without setting up a password?

I see a few subscription model site only asks the customer for email and payment info, without setting up a password. How did they do that?

on May 6, 2020
  1. 1

    This can be done with passwordless auth flow, which you can roll yourself by emailing the user a link containing a special auth token or use with a hosted auth service like Firebase: https://firebase.google.com/docs/auth/web/email-link-auth

    1. 1

      Thank you Gabe! This is super helpful.