22 lines
1.4 KiB
PHP
22 lines
1.4 KiB
PHP
<x-layout.guest>
|
|
<x-slot:heading>Create an Account</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="/register" method="POST">
|
|
@csrf
|
|
<x-form.field name="first_name" label="First Name" type="text" autocomplete="given-name" required />
|
|
<x-form.field name="last_name" label="Last Name" type="text" autocomplete="family-name" required />
|
|
<x-form.field name="email" label="Email address" type="email" autocomplete="email" required />
|
|
<x-form.field name="cell_phone" label="Cell Phone Number" type="tel" autocomplete="tel-national" />
|
|
<x-form.field name="judging_preference" label="Judging Preference" type="text" />
|
|
<x-form.field name="password" label="Password" type="password" autocomplete="new-password" required />
|
|
<x-form.field name="password_confirmation" label="Confirm Password" autocomplete="new-password" type="password" required />
|
|
<x-form.button>Create Account</x-form.button>
|
|
</form>
|
|
<div class="pt-4 border-t border-gray-900/10 mt-4">
|
|
Already have an account? <a href="/login" class="font-semibold text-indigo-600 hover:text-indigo-500"> Click here to Log In.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-layout.guest>
|