Files
sapper-template/routes/_private.html
2018-09-24 20:22:12 -06:00

18 lines
343 B
HTML

<h1>You are now logged in!</h1>
<figure>
{#if $user.username === 'general-zod'}
<img alt='Zod' src='zod.png'>
<figcaption>Kneel before Zod!</figcaption>
{:else}
<img alt='Super' src='super.png'>
<figcaption>Up, up, and away!</figcaption>
{/if}
</figure>
<style>
h1, figure, p {
text-align: center;
margin: 0 auto;
}
</style>