how create multiple users in a phoenix app using gen auth

mix phx.gen.auth should give you many of the necessary building blocks, but you’ll need to build the additional functionality on your own. That’s exactly why mix phx.gen.auth is a generator instead of a library – people likely need additional functionality and they’re in full control over the generated code and can adjust it as needed.

1 Like