*Hi all, looking for a way to automate as much as possible for new registrations. Can you pre-fill any fields and get the user to just fill a password?
Something like* https://academy.abc.co/authn/register?name={Tom}
*Hi all, looking for a way to automate as much as possible for new registrations. Can you pre-fill any fields and get the user to just fill a password?
Something like* https://academy.abc.co/authn/register?name={Tom}
Hi @Rick_Sauer
On my server I restrict self-registration and manually create all new user accounts, typically I do this with the command tutor local do createuser --staff --superuser yourusername user@email.com --password SomeRandomComplexPassword (leave out staff/superuser for standard learners) and then have users follow the forgot password link on the login page to apply their own password. This can also be scripted to run in a for loop if you have a massive list of users to create in bulk.
There’s also an API endpoint that can be used to create users, I haven’t actually tried this before though, I’ve just gotten so used to doing the other way ![]()
Presumably, you have some other source of data. If that is the case, I would recommend integrating with a third-party authentifier. For our site, we integrate with CILogon, which is an aggregator of a lot of third party’s SAML connectors.
Authentication is ok, we’re trying to automate filling of the sign-up fields when our learners fill a form from another platform. We’d love to have them fill the form in once and the link is generated and filled with data from the form.
I’m not even sure this exists, but thought I would ask anyway