fix autocompletes

This commit is contained in:
Luan Estradioto
2024-10-09 00:14:27 -03:00
parent d031911ada
commit 83bcf981c2
4 changed files with 15 additions and 9 deletions

View File

@@ -268,13 +268,17 @@
<p>Please enter your password to confirm this destructive action.</p> <p>Please enter your password to confirm this destructive action.</p>
</div> </div>
<div class="flex flex-col gap-2 mb-4"> <div class="flex flex-col gap-2 mb-4">
<label for="password-confirm" @php
$passwordConfirm = Str::uuid();
@endphp
<label for="password-confirm-{{ $passwordConfirm }}"
class="block text-sm font-medium text-gray-700 dark:text-gray-300"> class="block text-sm font-medium text-gray-700 dark:text-gray-300">
Your Password Your Password
</label> </label>
<form @submit.prevent="return false" @keydown.enter.prevent> <form @submit.prevent="false" @keydown.enter.prevent>
<input type="password" id="password-confirm" x-model="password" class="w-full input" <input type="text" name="username" autocomplete="username" value="{{ auth()->user()->email }}" style="display: none;">
placeholder="Enter your password"> <input type="password" id="password-confirm-{{ $passwordConfirm }}" x-model="password"
class="w-full input" placeholder="Enter your password" autocomplete="current-password">
</form> </form>
<p x-show="passwordError" x-text="passwordError" class="mt-1 text-sm text-red-500"></p> <p x-show="passwordError" x-text="passwordError" class="mt-1 text-sm text-red-500"></p>
@error('password') @error('password')

View File

@@ -20,7 +20,8 @@
<x-forms.checkbox instantSave id="team.telegram_enabled" label="Enabled" /> <x-forms.checkbox instantSave id="team.telegram_enabled" label="Enabled" />
</div> </div>
<div class="flex gap-2"> <div class="flex gap-2">
<x-forms.input type="password"
<x-forms.input type="password" autocomplete="new-password"
helper="Get it from the <a class='inline-block underline dark:text-white' href='https://t.me/botfather' target='_blank'>BotFather Bot</a> on Telegram." helper="Get it from the <a class='inline-block underline dark:text-white' href='https://t.me/botfather' target='_blank'>BotFather Bot</a> on Telegram."
required id="team.telegram_token" label="Token" /> required id="team.telegram_token" label="Token" />
<x-forms.input helper="Recommended to add your bot to a group chat and add its Chat ID here." required <x-forms.input helper="Recommended to add your bot to a group chat and add its Chat ID here." required

View File

@@ -36,7 +36,8 @@
</div> </div>
<div class="flex flex-col w-full gap-2 xl:flex-row"> <div class="flex flex-col w-full gap-2 xl:flex-row">
<x-forms.input id="settings.smtp_username" label="SMTP Username" /> <x-forms.input id="settings.smtp_username" label="SMTP Username" />
<x-forms.input id="settings.smtp_password" type="password" label="SMTP Password" /> <x-forms.input id="settings.smtp_password" type="password" label="SMTP Password"
autocomplete="new-password" />
<x-forms.input id="settings.smtp_timeout" helper="Timeout value for sending emails." <x-forms.input id="settings.smtp_timeout" helper="Timeout value for sending emails."
label="Timeout" /> label="Timeout" />
</div> </div>

View File

@@ -25,7 +25,7 @@
<x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.client_id" <x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.client_id"
label="Client ID" /> label="Client ID" />
<x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.client_secret" <x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.client_secret"
type="password" label="Client Secret" /> type="password" label="Client Secret" autocomplete="new-password" />
<x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.redirect_uri" <x-forms.input id="oauth_settings_map.{{ $oauth_setting->provider }}.redirect_uri"
label="Redirect URI" /> label="Redirect URI" />
@if ($oauth_setting->provider == 'azure') @if ($oauth_setting->provider == 'azure')