scrimba
Learn Firebase
Authentication
Looking at the starter code
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Looking at the starter code
AboutCommentsNotes
Looking at the starter code
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>

<head>
<title>Moody</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Calistoga&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>

<body>
<section id="logged-out-view">
<div class="container">
<h1 class="app-title">Moody</h1>

<div class="provider-buttons">
<button id="sign-in-with-google-btn" class="provider-btn">
<img src="assets/providers/google.png" class="google-btn-logo">
Sign in with Google
</button>
</div>

<div class="auth-fields-and-buttons">
<input id="email-input" type="email" placeholder="Email">
<input id="password-input" type="password" placeholder="Password">

<button id="sign-in-btn" class="primary-btn">Sign in</button>
<button id="create-account-btn" class="secondary-btn">Create Account</button>
</div>
</div>
</section>

<section id="logged-in-view">
<div class="container">
<img src="assets/gifs/jerryandthebird.gif">
</div>
</section>

<script src="index.js" type="module"></script>
</body>

</html>
Console
/index.html
-3:23