76 lines
2.3 KiB
Svelte
76 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import Panel from '$lib/components/ui/Panel.svelte';
|
|
import Button from '$lib/components/ui/Button.svelte';
|
|
import Alert from '$lib/components/ui/Alert.svelte';
|
|
import Login from '$lib/icons/Login.svelte';
|
|
|
|
/** @type {import('./$types').ActionData} */
|
|
export let form;
|
|
|
|
let user = form?.user ?? '';
|
|
|
|
function buttonClick() {}
|
|
</script>
|
|
|
|
<!--
|
|
This example requires updating your template:
|
|
|
|
```
|
|
<html class="h-full bg-white">
|
|
<body class="h-full">
|
|
```
|
|
-->
|
|
<div class="flex min-h-full flex-col justify-center px-6 py-12 lg:px-8">
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-sm">
|
|
<img class="mx-auto h-10 w-auto" src="/Landeswappen_NI.svg" alt="Landeswappen Niedersachsen" />
|
|
|
|
<h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">
|
|
Anmeldung zum 3D Tatort
|
|
</h2>
|
|
</div>
|
|
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
|
|
<form class="space-y-6" action="?/login" method="POST">
|
|
<div>
|
|
<label for="user" class="block text-sm font-medium leading-6 text-gray-900">Kennung</label>
|
|
<div class="mt-2">
|
|
<input
|
|
id="user"
|
|
name="user"
|
|
type="text"
|
|
autocomplete="email"
|
|
required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="flex items-center justify-between">
|
|
<label for="password" class="block text-sm font-medium leading-6 text-gray-900"
|
|
>Passwort</label
|
|
>
|
|
</div>
|
|
<div class="mt-2">
|
|
<input
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
required
|
|
class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
class="mt-10 flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
>Anmelden</button
|
|
>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|