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?
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
Thank you Gabe! This is super helpful.