When a player begins registering again for a new league, we want to be able to tell whether they registered before. This way we can avoid duplications and make the login logic a lot cleaner. We should tell the user what information they gave us before... maybe we should ask the user for an email first.
Steps:
fetch a person by their email
If the person exists, then just move on through registration.
If the person is not registered register them first, then move them on through the registration process.
When a player begins registering again for a new league, we want to be able to tell whether they registered before. This way we can avoid duplications and make the login logic a lot cleaner. We should tell the user what information they gave us before... maybe we should ask the user for an email first.
Steps: