Signing Out

So far, we can create users which also simultaneously signs us in, but we need to give our users a way to sign out. In this lesson,​ we add that feature to our app.

Sign Out Button HTML #

We add the HTML for the sign-out button inside the dashboard. That way the button is only shown to signed-in users.

Press + to interact
<div id="account">
<h1>Account</h1>
<button class="auth" auth="sign-out">sign out</button>
</div>

Create the signOut function

...