refactor: mengubah placeholder 'pangestu' menjadi johndoe

This commit is contained in:
Yoga Pangestu 2025-11-09 17:48:19 +07:00
parent 6e83278564
commit d23de954d6
4 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ class="size-8 rounded shrink-0 bg-accent text-accent-foreground flex items-cente
<div class="flex flex-col gap-6">
<flux:input wire:model="login" label="Nama pengguna atau email" type="text"
placeholder="pangestu / info.pangestuyoga@gmail.com" autocomplete="off" />
placeholder="johndoe / info.pangestuyoga@gmail.com" autocomplete="off" />
<flux:field>
<div class="mb-3 flex justify-between">

View File

@ -56,7 +56,7 @@ class="transition-all duration-500 ease-in-out {{ $currentStep === $step['id'] ?
<flux:field>
<flux:label>Nama Pengguna <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="pangestu" wire:model.live="form.username" autocomplete="off" />
<flux:input placeholder="jonhdoe" wire:model.live="form.username" autocomplete="off" />
<flux:error name="form.username" />
</flux:field>

View File

@ -31,7 +31,7 @@
<flux:field>
<flux:label>Nama Pengguna <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="pangestu"
<flux:input placeholder="johndoe"
wire:model.live.debounce.500ms="form.username" autocomplete="off" />
<flux:error name="form.username" />
</flux:field>

View File

@ -8,7 +8,7 @@
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<flux:field>
<flux:label>Nama Pengguna <span class="text-red-500 ms-1">*</span></flux:label>
<flux:input placeholder="pangestu" wire:model.live.debounce.500ms="form.username"
<flux:input placeholder="johndoe" wire:model.live.debounce.500ms="form.username"
autocomplete="off" />
<flux:error name="form.username" />
</flux:field>