I'm working on a sign up page where i want to separate the input field for first name and last name. Based on the documentation, it doesn't seem to be possible, so i wanted to check if it is possible in some way/a workaround that isn't mentioned in the documentation?
The user part in Appwrite is pretty much done for you, meaning any changes you want to do will usually go outside of the user realm.
For your use-case you can
- ☑️ Set these details in the
user-prefeneces
object https://appwrite.io/docs/client/account?sdk=web-default#accountUpdatePrefs - Set these details in a separate collection
- Set it as the user name and use split it at runtime
user.name.split(' ')
Alright, gonna try this. Thanks @Binyamin !
Recommended threads
- Current User is Not authorized
recreating same Thread
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...