Relative Content

Tag Archive for javascripthtmlcssfirebase

what has gone wrong in my html and js source code

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Gym Management System</title> <link rel=”stylesheet” href=”styles.css”> </head> <body> <div id=”app” </div> <script type=”module” src=”scripts.js” defer ></script> </html> SCRIPT.JS FILE import { initializeApp } from ‘https://www.gstatic.com/firebasejs/9.1.0/firebase-app.js’; import { getAuth, signInWithEmailAndPassword, createUserWithEmailAndPassword, signOut } from ‘https://www.gstatic.com/firebasejs/9.1.0/firebase-auth.js’; import { getFirestore, collection, addDoc, getDocs, serverTimestamp, query, orderBy } […]