From 08b71d12c9a3a9e47c42b4d0e2e5e345248b434b Mon Sep 17 00:00:00 2001 From: bvanroll Date: Mon, 23 Jan 2023 19:27:02 +0100 Subject: [PATCH] letsgo --- public/index.html | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/public/index.html b/public/index.html index 59f543a..bb0b59f 100644 --- a/public/index.html +++ b/public/index.html @@ -15,19 +15,17 @@ to avoid connecting the SDK to running emulators. --> - - - - - - - - - + + -
+

Fake People

+
@@ -52,18 +50,17 @@ rootRef.once('value', function(snapshot){ snapshot.forEach(function(d) { var v = d.val(); - peopleList.innerHTML += `
- -
${v.firstName} ${v.lastName}
-
Gender:
+ peopleList.innerHTML += `
+

${v.firstName} ${v.lastName}

+

Gender:

${v.gender}

-
Age:
+

Age:

${v.age}

-
Current Country of Residence:
+

Current Country of Residence:

${v.country}

-
Job:
+

Job:

${v.job}

-
Bio:
+

Bio:

${v.bio}

`; console.log(d.val());