mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-15 03:24:48 +00:00
21 lines
361 B
HTML
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>
|