You donβt need the port here
In order to verify an account do I have to use backend ?
How can I verify from front end?
Seems it's needed an appwrite function for that. You trigger the function from the front end
Or with account.create
I can do that. was cursious if there was a front end function for it
Seems not
So , I have to create it tradinally . By using a token , I guess
What do you mean?
By , having to send an email to the person's account
and then him clicking the link and verifying via a token
once that is done I can mark the account is verified
otherwise , how do I verify if the email is verified or not
This is the normal approach. Also sending emails from client side is not a good idea since can be translated into spam, etc
Will send it from next js server side ?
Will that be fine ?
I think yes. You can do that too through an appwrite function, probably even more recommend
Appwrite function ?
You mean , I create a function that does the above right ?
Yes, appwrite functions are code executed and deployed server side in your appwrite instance
got it thanks
Interesting will check it out
thanks
You can verify on the front end
Recommended threads
- is `account.get()` safe to be used in th...
I want to user's `id` for authentication. However, a while ago I was told in this server not to use `account.get()` and instead add user preferences for that us...
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...