1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

changes made web GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-17 18:52:28 +05:30 committed by GitHub
parent 569d54bee3
commit 8d7ab130ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ Once your SDK object is set, access any of the Appwrite services and choose any
const account = new Account(client);
// Register User
account.create(ID.unique(), email = 'email@example.com', phone = '+123456789', password = 'password', name = "Walter O'Brien")
account.create(ID.unique(), 'email@example.com', '+123456789', 'password', "Walter O'Brien")
.then(function (response) {
console.log(response);
}, function (error) {
@ -47,7 +47,7 @@ client
const account = new Account(client);
// Register User
account.create(ID.unique(), email = 'email@example.com', phone = '+123456789', password = 'password', name = "Walter O'Brien")
account.create(ID.unique(), 'email@example.com', '+123456789', 'password', "Walter O'Brien")
.then(function (response) {
console.log(response);
}, function (error) {