|
@@ -107,7 +107,7 @@
|
|
|
{#if ($config?.features.auth_trusted_header ?? false) || $config?.features.auth === false}
|
|
|
<div class=" my-auto pb-10 w-full">
|
|
|
<div
|
|
|
- class="flex items-center justify-center gap-3 text-xl sm:text-2xl text-center font-bold dark:text-gray-200"
|
|
|
+ class="flex items-center justify-center gap-3 text-xl sm:text-2xl text-center font-medium dark:text-gray-200"
|
|
|
>
|
|
|
<div>
|
|
|
{$i18n.t('Signing in')}
|
|
@@ -129,7 +129,7 @@
|
|
|
}}
|
|
|
>
|
|
|
<div class="mb-1">
|
|
|
- <div class=" text-2xl font-bold">
|
|
|
+ <div class=" text-2xl font-medium">
|
|
|
{mode === 'signin' ? $i18n.t('Sign in') : $i18n.t('Sign up')}
|
|
|
{$i18n.t('to')}
|
|
|
{$WEBUI_NAME}
|
|
@@ -148,7 +148,7 @@
|
|
|
<div class="flex flex-col mt-4">
|
|
|
{#if mode === 'signup'}
|
|
|
<div>
|
|
|
- <div class=" text-sm font-semibold text-left mb-1">{$i18n.t('Name')}</div>
|
|
|
+ <div class=" text-sm font-medium text-left mb-1">{$i18n.t('Name')}</div>
|
|
|
<input
|
|
|
bind:value={name}
|
|
|
type="text"
|
|
@@ -163,7 +163,7 @@
|
|
|
{/if}
|
|
|
|
|
|
<div class="mb-2">
|
|
|
- <div class=" text-sm font-semibold text-left mb-1">{$i18n.t('Email')}</div>
|
|
|
+ <div class=" text-sm font-medium text-left mb-1">{$i18n.t('Email')}</div>
|
|
|
<input
|
|
|
bind:value={email}
|
|
|
type="email"
|
|
@@ -175,7 +175,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div>
|
|
|
- <div class=" text-sm font-semibold text-left mb-1">{$i18n.t('Password')}</div>
|
|
|
+ <div class=" text-sm font-medium text-left mb-1">{$i18n.t('Password')}</div>
|
|
|
|
|
|
<input
|
|
|
bind:value={password}
|
|
@@ -190,7 +190,7 @@
|
|
|
|
|
|
<div class="mt-5">
|
|
|
<button
|
|
|
- class=" bg-gray-900 hover:bg-gray-800 w-full rounded-2xl text-white font-semibold text-sm py-3 transition"
|
|
|
+ class=" bg-gray-900 hover:bg-gray-800 w-full rounded-2xl text-white font-medium text-sm py-3 transition"
|
|
|
type="submit"
|
|
|
>
|
|
|
{mode === 'signin' ? $i18n.t('Sign in') : $i18n.t('Create Account')}
|