Archived
1
0
Fork 0
This repository has been archived on 2026-06-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
wow-raid-bingo/resources/views/form/login.blade.php

17 lines
665 B
PHP

<form class="space-y-4" wire:submit.prevent="submit">
@if (Session::has('message'))
<p class="text-center text-red-400">{{ Session::get('message') }}</p>
@endif
<div>
<x-ignite-label class="sr-only" for="username">Username</x-ignite-label>
<x-ignite-input name="username" wire:model="username" placeholder="Username" class="" />
</div>
<div>
<label class="sr-only" for="password">Password</label>
<x-ignite-input name="password" wire:model="password" type="password" placeholder="Password" />
</div>
<x-button element="input" wire:click="submit" class="w-full" type="info" value="Login" />
</form>