19 lines
895 B
PHP
19 lines
895 B
PHP
<x-layout.guest>
|
|
<x-slot:heading>Log In</x-slot:heading>
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-[480px]">
|
|
<div class="bg-white px-6 py-12 shadow sm:rounded-lg sm:px-12">
|
|
<form class="space-y-6" action="/login" method="POST">
|
|
@csrf
|
|
<x-form.field name="email" label_text="Email address" type="email" autocomplete="email" required />
|
|
<x-form.field name="password" label_text="Password" type="password" required />
|
|
<x-auth.rememberme-forgotpassword />
|
|
<x-form.button>Log In</x-form.button>
|
|
</form>
|
|
<div class="pt-4 border-t border-gray-900/10 mt-4">
|
|
Don't have an account? <a href="/register" class="font-semibold text-indigo-600 hover:text-indigo-500"> Click here to register.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</x-layout.guest>
|