mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-14 11:14:39 +00:00
18 lines
343 B
HTML
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> |