feat: initial logins

This commit is contained in:
2025-06-12 13:58:59 +01:00
parent b516196d38
commit 3bdee89eed
12 changed files with 716 additions and 444 deletions

View File

@@ -5,12 +5,13 @@
value?: string | null;
placeholder?: string;
required?: boolean;
type?: "text" | "password" | "email" | "number";
}
let { inputElem = $bindable(), value = $bindable(), name, ...rest }: Props = $props();
</script>
<input type="text" id={name} {name} bind:value bind:this={inputElem} {...rest} />
<input id={name} {name} bind:value bind:this={inputElem} {...rest} />
<style>
input {