mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 07:21:20 +00:00
feat: rename certain fields
This commit is contained in:
parent
6ebca59554
commit
cb51a4507d
4 changed files with 8 additions and 10 deletions
|
@ -36,7 +36,7 @@
|
|||
</div>
|
||||
<div class="grid gap-1">
|
||||
<Label class="sr-only" for="password">Password</Label>
|
||||
<Input id="password" name="password" type="password" disabled={isLoading} />
|
||||
<Input id="password" name="password" type="password" disabled={isLoading} placeholder="Password" />
|
||||
</div>
|
||||
<Button type="submit" disabled={isLoading}>
|
||||
{#if isLoading}
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<Input
|
||||
id="name"
|
||||
name="name"
|
||||
placeholder="Michael Jackson"
|
||||
placeholder="Name"
|
||||
type="name"
|
||||
disabled={isLoading}
|
||||
/>
|
||||
|
@ -34,7 +34,7 @@
|
|||
<Input
|
||||
id="email"
|
||||
name="email"
|
||||
placeholder="michael@jackson.com"
|
||||
placeholder="name@example.com"
|
||||
type="email"
|
||||
autocapitalize="none"
|
||||
autocomplete="email"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<Input
|
||||
id="email"
|
||||
name="email"
|
||||
placeholder="michael@hihi.com"
|
||||
placeholder="name@example.com"
|
||||
type="email"
|
||||
autocapitalize="none"
|
||||
autocomplete="email"
|
||||
|
|
|
@ -15,12 +15,10 @@
|
|||
|
||||
<div class="relative flex min-h-screen flex-col" id="page">
|
||||
<SiteNavBar authenticated={data.authenticated} />
|
||||
<main class="container relative mb-4 max-w-[980px] flex-1 mt-12">
|
||||
<!-- {#key data.url} -->
|
||||
<div in:fade={{ duration: 200, delay: 100 }} out:fade={{ duration: 100 }}>
|
||||
<slot />
|
||||
</div>
|
||||
<!-- {/key} -->
|
||||
<main class="container relative mb-4 mt-12 max-w-[980px] flex-1">
|
||||
<div in:fade={{ duration: 200, delay: 100 }} out:fade={{ duration: 100 }}>
|
||||
<slot />
|
||||
</div>
|
||||
</main>
|
||||
<SiteFooter />
|
||||
{#if dev}
|
||||
|
|
Loading…
Reference in a new issue