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-prefenecesobject 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
- [SOLVED] Appwrite Cloud and FRA cloud se...
Can anyone estimate how long this will take to resolve? I am checking status here https://status.appwrite.online/
- How to use Operator.arrayAppend on a rel...
Hi, is it possible to use any operator on a relationship column? I have a One to Many relationship column on a table and I would like to add entries to the colu...
- Update user email using OTP
Hi, I am trying to implement email update using OTP, there is not password associated with the account. One solution I found online is creating appwrite functio...