mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +00:00
refac: styling
This commit is contained in:
parent
ca213cbd12
commit
85a3c32f07
1 changed files with 4 additions and 4 deletions
|
|
@ -263,7 +263,7 @@
|
||||||
bind:value={name}
|
bind:value={name}
|
||||||
type="text"
|
type="text"
|
||||||
id="name"
|
id="name"
|
||||||
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-600"
|
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-300 dark:placeholder:text-gray-600"
|
||||||
autocomplete="name"
|
autocomplete="name"
|
||||||
placeholder={$i18n.t('Enter Your Full Name')}
|
placeholder={$i18n.t('Enter Your Full Name')}
|
||||||
required
|
required
|
||||||
|
|
@ -279,7 +279,7 @@
|
||||||
<input
|
<input
|
||||||
bind:value={ldapUsername}
|
bind:value={ldapUsername}
|
||||||
type="text"
|
type="text"
|
||||||
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-600"
|
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-300 dark:placeholder:text-gray-600"
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
name="username"
|
name="username"
|
||||||
id="username"
|
id="username"
|
||||||
|
|
@ -296,7 +296,7 @@
|
||||||
bind:value={email}
|
bind:value={email}
|
||||||
type="email"
|
type="email"
|
||||||
id="email"
|
id="email"
|
||||||
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-600"
|
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-300 dark:placeholder:text-gray-600"
|
||||||
autocomplete="email"
|
autocomplete="email"
|
||||||
name="email"
|
name="email"
|
||||||
placeholder={$i18n.t('Enter Your Email')}
|
placeholder={$i18n.t('Enter Your Email')}
|
||||||
|
|
@ -313,7 +313,7 @@
|
||||||
bind:value={password}
|
bind:value={password}
|
||||||
type="password"
|
type="password"
|
||||||
id="password"
|
id="password"
|
||||||
class="my-0.5 w-full text-sm outline-hidden bg-transparent"
|
class="my-0.5 w-full text-sm outline-hidden bg-transparent placeholder:text-gray-300 dark:placeholder:text-gray-600"
|
||||||
placeholder={$i18n.t('Enter Your Password')}
|
placeholder={$i18n.t('Enter Your Password')}
|
||||||
autocomplete={mode === 'signup' ? 'new-password' : 'current-password'}
|
autocomplete={mode === 'signup' ? 'new-password' : 'current-password'}
|
||||||
name="password"
|
name="password"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue