Skip to main content

Posts

Showing posts from August, 2021

SIGN UP, SIGN IN HTML, JS, CSS USING FIREBASE

SUBSCRIBE TO OUR YOUTUBE CHANNEL   HTML + CSS <!DOCTYPE html> <html lang="en" dir="ltr"> <head>     <title>         FORM     </title>     <!--add scripts-->     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-app.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-analytics.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-auth.js"></script>     <script src="form.js"></script>     </head> <body>     <h1>WELCOME</h1>     <div id="frmcontainer">       <div id="head"></div>         <input type="email" placeholder="Email" id="email">         <input type="password" placeholder="Password" id="password">         <button onclick="signUp()&