62 lines
3.5 KiB
PHP
62 lines
3.5 KiB
PHP
@extends('layouts.nova')
|
||
|
||
@section('content')
|
||
<div class="flex-1 flex items-center justify-center px-6 py-16 min-h-[calc(100vh-4rem)] box-border">
|
||
<div class="max-w-5xl w-full">
|
||
<div class="rounded-2xl border border-white/10 bg-slate-900/70 backdrop-blur shadow-xl p-8 auth-card">
|
||
<h2 class="text-2xl font-semibold mb-2 text-white">Create Account</h2>
|
||
|
||
<p class="text-sm text-white/60 mb-6">Start with your email. You’ll choose a password and username after verification.</p>
|
||
@if($errors->has('oauth'))
|
||
<div class="rounded-lg bg-red-900/40 border border-red-500/40 px-4 py-3 text-sm text-red-300 mb-4">
|
||
{{ $errors->first('oauth') }}
|
||
</div>
|
||
@endif
|
||
|
||
@if($errors->has('bot'))
|
||
<div class="rounded-lg bg-red-900/40 border border-red-500/40 px-4 py-3 text-sm text-red-300 mb-4">
|
||
{{ $errors->first('bot') }}
|
||
</div>
|
||
@endif
|
||
|
||
@include('auth.partials.social-login', ['dividerLabel' => 'or register with email'])
|
||
<form method="POST" action="{{ route('register') }}" class="space-y-5" data-bot-form>
|
||
@csrf
|
||
<input type="text" name="homepage_url" value="" tabindex="-1" autocomplete="off" class="hidden" aria-hidden="true">
|
||
<input type="hidden" name="_bot_fingerprint" value="">
|
||
|
||
@php
|
||
$captchaProvider = $captcha['provider'] ?? 'turnstile';
|
||
$captchaSiteKey = $captcha['siteKey'] ?? '';
|
||
@endphp
|
||
|
||
<div>
|
||
<label class="block text-sm mb-1 text-white/80" for="email">Email</label>
|
||
<input id="email" name="email" type="email" required placeholder="you@example.com" value="{{ old('email', $prefillEmail ?? '') }}" class="w-full rounded-lg bg-slate-950/70 border border-white/10 px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-cyan-500 text-white" />
|
||
<x-input-error :messages="$errors->get('email')" class="mt-2" />
|
||
</div>
|
||
|
||
@if((($requiresCaptcha ?? false) || session('bot_captcha_required')) && $captchaSiteKey !== '')
|
||
@if($captchaProvider === 'recaptcha')
|
||
<div class="g-recaptcha" data-sitekey="{{ $captchaSiteKey }}" data-theme="dark"></div>
|
||
@elseif($captchaProvider === 'hcaptcha')
|
||
<div class="h-captcha" data-sitekey="{{ $captchaSiteKey }}" data-theme="dark"></div>
|
||
@else
|
||
<div class="cf-turnstile" data-sitekey="{{ $captchaSiteKey }}" data-theme="dark"></div>
|
||
@endif
|
||
<x-input-error :messages="$errors->get('captcha')" class="mt-2" />
|
||
@endif
|
||
|
||
<button type="submit" class="w-full rounded-lg py-3 font-medium bg-gradient-to-r from-cyan-500 to-sky-400 hover:from-cyan-400 hover:to-sky-300 text-slate-900 transition">Continue</button>
|
||
|
||
<p class="text-sm text-center text-white/60">Already registered? <a href="{{ route('login') }}" class="text-cyan-400 hover:underline">Sign in</a></p>
|
||
</form>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
@if((($requiresCaptcha ?? false) || session('bot_captcha_required')) && (($captcha['siteKey'] ?? '') !== '') && (($captcha['scriptUrl'] ?? '') !== ''))
|
||
<script src="{{ $captcha['scriptUrl'] }}" async defer></script>
|
||
@endif
|
||
@include('partials.bot-fingerprint-script')
|
||
@endsection
|