mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
87 lines
3.8 KiB
PHP
87 lines
3.8 KiB
PHP
<x-guest-layout>
|
|
<x-jet-authentication-card>
|
|
<x-slot name="logo">
|
|
<x-jet-authentication-card-logo/>
|
|
</x-slot>
|
|
|
|
<x-jet-validation-errors class="mb-4"/>
|
|
|
|
<form method="POST" action="{{ route('register') }}">
|
|
|
|
<div class="flex items-center justify-end mb-4">
|
|
<x-button icon="arrow-left" secondary class="ml-4" href="/">
|
|
{{ __('Back to the website') }}
|
|
</x-button>
|
|
</div>
|
|
|
|
@csrf
|
|
|
|
<div>
|
|
<x-jet-label for="name" value="{{ __('Name') }}"/>
|
|
<x-jet-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required
|
|
autofocus autocomplete="name"/>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-jet-label for="email" value="{{ __('Email') }}"/>
|
|
<x-jet-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')"
|
|
required/>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-jet-label for="password" value="{{ __('Password') }}"/>
|
|
<x-jet-input id="password" class="block mt-1 w-full" type="password" name="password" required
|
|
autocomplete="new-password"/>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-jet-label for="password_confirmation" value="{{ __('Confirm Password') }}"/>
|
|
<x-jet-input id="password_confirmation" class="block mt-1 w-full" type="password"
|
|
name="password_confirmation" required autocomplete="new-password"/>
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
<x-jet-label for="is_lecturer">
|
|
<div class="flex items-center">
|
|
<x-jet-checkbox name="is_lecturer" id="is_lecturer" required/>
|
|
|
|
<div class="ml-2">
|
|
{{ __('I want to submit new courses on this platform') }}
|
|
</div>
|
|
</div>
|
|
</x-jet-label>
|
|
</div>
|
|
|
|
@if (Laravel\Jetstream\Jetstream::hasTermsAndPrivacyPolicyFeature())
|
|
<div class="mt-4">
|
|
<x-jet-label for="terms">
|
|
<div class="flex items-center">
|
|
<x-jet-checkbox name="terms" id="terms" required/>
|
|
|
|
<div class="ml-2">
|
|
{!! __('I agree to the :terms_of_service and :privacy_policy', [
|
|
'terms_of_service' => '<a target="_blank" href="'.route('terms.show').'" class="underline text-sm text-gray-600 hover:text-gray-900">'.__('Terms of Service').'</a>',
|
|
'privacy_policy' => '<a target="_blank" href="'.route('policy.show').'" class="underline text-sm text-gray-600 hover:text-gray-900">'.__('Privacy Policy').'</a>',
|
|
]) !!}
|
|
</div>
|
|
</div>
|
|
</x-jet-label>
|
|
</div>
|
|
@endif
|
|
|
|
{{--<div class="flex items-center justify-end mt-4">
|
|
<a class="underline text-sm text-gray-600 hover:text-gray-900" href="{{ route('login') }}">
|
|
{{ __('Already registered?') }}
|
|
</a>
|
|
<x-jet-button class="ml-4">
|
|
{{ __('Register') }}
|
|
</x-jet-button>
|
|
</div>--}}
|
|
|
|
<div class="flex items-center justify-left mt-4">
|
|
<x-button href="{{ route('auth.login') }}" primary icon="lightning-bolt">Login</x-button>
|
|
</div>
|
|
</form>
|
|
</x-jet-authentication-card>
|
|
</x-guest-layout>
|