chore: Update registration view to display a notice for first user that it will be an admin

This commit is contained in:
Andras Bacsai 2024-08-06 11:34:51 +02:00
parent 22f04e4708
commit 0ce41d2c1c
2 changed files with 15 additions and 4 deletions

View File

@ -44,6 +44,8 @@ public function boot(): void
{
Fortify::createUsersUsing(CreateNewUser::class);
Fortify::registerView(function () {
$isFirstUser = User::count() === 0;
$settings = \App\Models\InstanceSettings::get();
if (! $settings->is_registration_enabled) {
return redirect()->route('login');
@ -51,7 +53,9 @@ public function boot(): void
if (config('coolify.waitlist')) {
return redirect()->route('waitlist.index');
} else {
return view('auth.register');
return view('auth.register', [
'isFirstUser' => $isFirstUser,
]);
}
});

View File

@ -16,9 +16,16 @@ function getOldOrLocal($key, $localValue)
</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="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">
Create an account
</h1>
<div>
<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">
@csrf
<x-forms.input id="name" required type="text" name="name" value="{{ $name }}"