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

Update web GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-19 01:21:22 +05:30 committed by GitHub
parent b2e4513af3
commit 0853de0760
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@example.com', '+123456789', 'password', "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@example.com', '+123456789', 'password', "Walter O'Brien")
account.create(ID.unique(), "email@example.com", "+123456789", "password", "Walter O'Brien")
.then(function (response) {
console.log(response);
}, function (error) {