How I can add Register/Signup functionality in app, I didn’t see anything in docs related to that.
currently there is /login route not for signup by default the only I can see is to add User from Desk.
You can enable sign up in website settings. Mine is currently disabled - have never used it, so can’t speak to the process or suitability for your application.
with this signup user can’t set its password someone has to set it through Desk after filling the form.
@Umair_Mehmood, do you have any idea how we can override the default signup process? As currently someone has to assign the password from the desk side. And what approach did you take to manage user registrations and passwords? Any tips would be greatly appreciated!
Does anyone have idea?
Hello,
I solved this very similar scenario by Custom doctype “presignup”. This doctype contains all important fields from user dct (name, email, phone, pass, pass2, etc…). Next I used webform dct that fetches all fields from presignup dct. This form is visible for all. After filling this form (with small Logic - pass =pass2) is new presignup user added. On submit the new user is created by some “light” py code.
I hope it can help.
Jiří Šír