forked from Ruderverein-Donau-Linz/rowt
43 lines
1.6 KiB
Svelte
43 lines
1.6 KiB
Svelte
<script lang="ts">
|
|
import { user } from '../stores/User.js';
|
|
|
|
function login() {
|
|
$user.status = true;
|
|
}
|
|
</script>
|
|
|
|
<div class="w-full max-w-md space-y-8">
|
|
<div>
|
|
<img class="mx-auto h-16 w-auto" src="https://rudernlinz.at/wp-content/uploads/2021/02/cropped-logo.png" alt="Logo Ruderassistent">
|
|
<h1 class="mt-6 h1">Ruderassistent</h1>
|
|
</div>
|
|
|
|
<form class="mt-8 space-y-6" method="post" action="/">
|
|
<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> |