Files
sapper-template/routes/_private.html
Robert Hall 3d2098c250 Doh!
2018-09-24 20:49:04 -06:00

21 lines
361 B
HTML

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