This pull request begins the work to add a process for a user at an Organization to create a Member at that Organization:
a new org_create_member view shows a form with a few basic fields
filling in the fields and clicking the 'Create Member' button makes a POST request to the VMI user API endpoint to create a new user. If the request to VMI succeeds, then smh_app also creates a new member, with an association to a UserSocialAuth object that stores the new VMI user’s sub in its uid field.
when a member is created successfully, the user is taken to the next step in the process, which is currently just an empty form. A future pull request will fill this form with meaningful fields.
clicking the 'CREATE ACCOUNT' button in the header takes the user to the org_create_member view for their first Organization
This pull request begins the work to add a process for a user at an
Organization
to create aMember
at thatOrganization
:org_create_member
view shows a form with a few basic fieldssmh_app
also creates a new member, with an association to aUserSocialAuth
object that stores the new VMI user’ssub
in itsuid
field.org_create_member
view for their firstOrganization