[TASK] add 'fancy' login
This commit is contained in:
parent
9c5a17852f
commit
7d1b86cae8
@ -2,6 +2,14 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
@apply text-center text-3xl uppercase tracking-wide font-bold text-primary-900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input {
|
||||||
|
@apply relative block w-full border-0 py-1.5 px-2 text-gray-900 ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:z-10 focus:ring-2 focus:ring-inset focus:ring-primary-600 sm:text-sm sm:leading-6;
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
@apply inline-block rounded-md px-3 py-2 text-sm font-semibold text-white focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 cursor-pointer text-center;
|
@apply inline-block rounded-md px-3 py-2 text-sm font-semibold text-white focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 cursor-pointer text-center;
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
<Header />
|
<Header />
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<main class="flex min-h-screen {isLoggedIn ? 'items-center' : 'items-start'} justify-center px-4 py-12 sm:px-6 lg:px-8">
|
<main class="flex min-h-screen {isLoggedIn ? 'items-start' : 'items-center'} justify-center px-4 py-12 sm:px-6 lg:px-8">
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
|
@ -23,25 +23,45 @@
|
|||||||
<title>Ruderassistent - ASKÖ Ruderverein Donau Linz</title>
|
<title>Ruderassistent - ASKÖ Ruderverein Donau Linz</title>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<section>
|
|
||||||
<h1>
|
|
||||||
<span class="welcome">
|
|
||||||
<picture>
|
|
||||||
<source srcset={welcome} type="image/webp" />
|
|
||||||
<img src={welcome_fallback} alt="Welcome" />
|
|
||||||
</picture>
|
|
||||||
</span>
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
{#if isLoggedIn}
|
{#if isLoggedIn}
|
||||||
<p>Here comes the list</p>
|
<p>Here comes the list</p>
|
||||||
<button on:click={logout} class="btn btn-primary">
|
<button on:click={logout} class="btn btn-primary">
|
||||||
Jetzt ausloggen
|
Jetzt ausloggen
|
||||||
</button>
|
</button>
|
||||||
{:else}
|
{:else}
|
||||||
<p>Login</p>
|
<div class="w-full max-w-md space-y-8">
|
||||||
<button on:click={login} class="btn btn-primary">
|
<div>
|
||||||
Jetzt einloggen
|
<img class="mx-auto h-16 w-auto" src="https://rudernlinz.at/wp-content/uploads/2021/02/cropped-logo.png" alt="Logo Ruderassistent">
|
||||||
</button>
|
<h1 class="mt-6 h1">Ruderassistent</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<form class="mt-8 space-y-6" method="post" action="/auth">
|
||||||
|
<input type="hidden" name="remember" value="true">
|
||||||
|
<div class="-space-y-px rounded-md shadow-sm">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<label for="name" class=" sr-only ">Name</label>
|
||||||
|
<input id="name" name="name" type="input" value="" class="input rounded-t-md" placeholder="Name">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<label for="password" class=" sr-only ">Passwort</label>
|
||||||
|
<input id="password" name="password" type="password" value="" class="input rounded-b-md" placeholder="Passwort">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<button on:click={login} type="submit" class="group relative flex w-full justify-center btn btn-primary">
|
||||||
|
<span class="absolute inset-y-0 left-0 flex items-center pl-3">
|
||||||
|
<svg class="h-5 w-5 text-primary-300 group-hover:text-primary-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
|
||||||
|
<path fill-rule="evenodd" d="M10 1a4.5 4.5 0 00-4.5 4.5V9H5a2 2 0 00-2 2v6a2 2 0 002 2h10a2 2 0 002-2v-6a2 2 0 00-2-2h-.5V5.5A4.5 4.5 0 0010 1zm3 8V5.5a3 3 0 10-6 0V9h6z" clip-rule="evenodd" />
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
Einloggen
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</section>
|
|
||||||
|
Loading…
Reference in New Issue
Block a user