chore: Update registration view to display a notice for first user that it will be an admin
This commit is contained in:
@@ -44,6 +44,8 @@ class FortifyServiceProvider extends ServiceProvider
|
|||||||
{
|
{
|
||||||
Fortify::createUsersUsing(CreateNewUser::class);
|
Fortify::createUsersUsing(CreateNewUser::class);
|
||||||
Fortify::registerView(function () {
|
Fortify::registerView(function () {
|
||||||
|
$isFirstUser = User::count() === 0;
|
||||||
|
|
||||||
$settings = \App\Models\InstanceSettings::get();
|
$settings = \App\Models\InstanceSettings::get();
|
||||||
if (! $settings->is_registration_enabled) {
|
if (! $settings->is_registration_enabled) {
|
||||||
return redirect()->route('login');
|
return redirect()->route('login');
|
||||||
@@ -51,7 +53,9 @@ class FortifyServiceProvider extends ServiceProvider
|
|||||||
if (config('coolify.waitlist')) {
|
if (config('coolify.waitlist')) {
|
||||||
return redirect()->route('waitlist.index');
|
return redirect()->route('waitlist.index');
|
||||||
} else {
|
} else {
|
||||||
return view('auth.register');
|
return view('auth.register', [
|
||||||
|
'isFirstUser' => $isFirstUser,
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -16,9 +16,16 @@ $email = getOldOrLocal('email', 'test3@example.com');
|
|||||||
</a>
|
</a>
|
||||||
<div class="w-full bg-white rounded-lg shadow md:mt-0 sm:max-w-md xl:p-0 dark:bg-base">
|
<div class="w-full bg-white rounded-lg shadow md:mt-0 sm:max-w-md xl:p-0 dark:bg-base">
|
||||||
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
||||||
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
<div>
|
||||||
Create an account
|
<h1
|
||||||
</h1>
|
class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
||||||
|
Create an account
|
||||||
|
</h1>
|
||||||
|
@if ($isFirstUser)
|
||||||
|
<div class="text-xs dark:text-warning">This user will be the root user (full admin access).
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
</div>
|
||||||
<form action="/register" method="POST" class="flex flex-col gap-2">
|
<form action="/register" method="POST" class="flex flex-col gap-2">
|
||||||
@csrf
|
@csrf
|
||||||
<x-forms.input id="name" required type="text" name="name" value="{{ $name }}"
|
<x-forms.input id="name" required type="text" name="name" value="{{ $name }}"
|
||||||
|
Reference in New Issue
Block a user