You've already forked Epicnabbo-Catalogus-Updated-Daily
🆙 Added fixed cms
This commit is contained in:
@@ -0,0 +1,70 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<div class="space-y-3">
|
||||
<p>
|
||||
{{ __('Hello there! We are truly grateful that you have chosen Atom CMS for your hotel.') }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{{ __('Atom CMS is built with the community in mind, meaning we highly value community input, rather than only bringing our own ideas & vision to the CMS we try our very best to implement suggestions made by our beloved community. We want everyone to be able to contribute or customise Atom CMS to their needs without having a bachelor in programming.') }}
|
||||
</p>
|
||||
|
||||
<p>{{ __('Atom CMS sole purpose is to empower hotel owners like you. We want you to be able to run your hotel with ease. Our user-friendly interface, robust features, and helpful community are here to ensure that your experience with Atom CMS is nothing short of exceptional!') }}</p>
|
||||
|
||||
<p>
|
||||
{{ __('As you dive into Atom CMS, we encourage you to explore the extensive range of features we have curated to help you bring your vision to life. From customizable templates to seamless integrations with clients like Nitro, we will have you set up in no time.') }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{!! __('To get started, we recommend checking out our <a href=":documentation_link" target="_blank" class="font-semibold underline">comprehensive documentation</a>, which will guide you through the initial setup and help you make the most of your Atom CMS experience.', ['documentation_link' => 'https://github.com/atom-retros/atomcms/wiki']) !!}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{!! __('And remember, please <a href=":discord_link" target="_blank" class="font-semibold underline">join our Discord</a>. If you have any questions or need assistance, please do not hesitate to reach out. We are here to help you every step of the way.', ['discord_link' => 'https://discord.gg/pP6HyZedAj']) !!}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{{ __('Once again, thank you for choosing Atom CMS, and we cannot wait to see the incredible project you will create.') }}
|
||||
</p>
|
||||
|
||||
<p class="font-semibold italic">
|
||||
{{ __('With everything being said we just want to wish you a warm welcome to the Atom CMS family!') }}
|
||||
</p>
|
||||
<hr>
|
||||
|
||||
<div>
|
||||
{{ __('To avoid any third-party party abuse, please provide the installation code, which can be found in your database inside the "website_installation" table under the column "installation_key".') }}
|
||||
</div>
|
||||
|
||||
<form action="{{ route('installation.start-installation') }}" method="POST">
|
||||
@csrf
|
||||
|
||||
<label class="block font-semibold text-gray-700" for="installation_key">
|
||||
{{ __('Installation key') }}
|
||||
</label>
|
||||
|
||||
<input
|
||||
class="focus:ring-0 border-4 border-gray-200 rounded focus:border-[#eeb425] w-full @error('installation_key')border-red-600 ring-red-500 @enderror"
|
||||
id="installation_key" type="text" name="installation_key" placeholder="{{ __('Enter your installation key') }}" autofocus required autocomplete="false">
|
||||
|
||||
@error('installation_key')
|
||||
<p class="mt-1 text-xs italic text-red-500">
|
||||
{{ $message }}
|
||||
</p>
|
||||
@enderror
|
||||
|
||||
<x-form.secondary-button classes="mt-3">
|
||||
{{ __('Start the setup') }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
</x-installation-layout>
|
||||
@@ -0,0 +1,49 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<form action="{{ route('installation.save-step') }}" method="POST" class="space-y-3">
|
||||
@csrf
|
||||
|
||||
@foreach($settings as $setting)
|
||||
<div>
|
||||
<label class="block font-semibold text-gray-700" for="{{ $setting->key }}">
|
||||
{{ Str::replace('_', ' ', Str::ucfirst($setting->key)) }}
|
||||
</label>
|
||||
|
||||
<input
|
||||
class="focus:ring-0 border-4 border-gray-200 rounded focus:border-[#eeb425] w-full @error($setting->key)border-red-600 ring-red-500 @enderror"
|
||||
id="{{ $setting->key }}" type="text" name="{{ $setting->key }}" value="{{ $setting->value }}" placeholder="{{ $setting->key }}" required>
|
||||
|
||||
@error($setting->key)
|
||||
<p class="mt-1 text-xs italic text-red-500">
|
||||
{{ $message }}
|
||||
</p>
|
||||
@enderror
|
||||
|
||||
<small>{{ $setting->comment }}</small>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
<x-form.secondary-button>
|
||||
{{ __('Continue to step 2') }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
|
||||
<div class="flex gap-x-4">
|
||||
<form action="{{ route('installation.restart') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.danger-button>
|
||||
{{ __('Restart installation') }}
|
||||
</x-form.danger-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
</x-installation-layout>
|
||||
@@ -0,0 +1,57 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<form action="{{ route('installation.save-step') }}" method="POST" class="space-y-3">
|
||||
@csrf
|
||||
|
||||
@foreach($settings as $setting)
|
||||
<div>
|
||||
<label class="block font-semibold text-gray-700" for="{{ $setting->key }}">
|
||||
{{ Str::replace('_', ' ', Str::ucfirst($setting->key)) }}
|
||||
</label>
|
||||
|
||||
<input
|
||||
class="focus:ring-0 border-4 border-gray-200 rounded focus:border-[#eeb425] w-full @error($setting->key)border-red-600 ring-red-500 @enderror"
|
||||
id="{{ $setting->key }}" type="text" name="{{ $setting->key }}" value="{{ $setting->value }}" placeholder="{{ $setting->key }}" required>
|
||||
|
||||
@error($setting->key)
|
||||
<p class="mt-1 text-xs italic text-red-500">
|
||||
{{ $message }}
|
||||
</p>
|
||||
@enderror
|
||||
|
||||
<small>{{ $setting->comment }}</small>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
<x-form.secondary-button>
|
||||
{{ __('Continue to step 3') }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
|
||||
<div class="flex gap-x-4">
|
||||
<form action="{{ route('installation.previous-step') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.primary-button>
|
||||
{{ __('Previous step') }}
|
||||
</x-form.primary-button>
|
||||
</form>
|
||||
|
||||
<form action="{{ route('installation.restart') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.danger-button>
|
||||
{{ __('Restart installation') }}
|
||||
</x-form.danger-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
</x-installation-layout>
|
||||
@@ -0,0 +1,57 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<form action="{{ route('installation.save-step') }}" method="POST" class="space-y-3">
|
||||
@csrf
|
||||
|
||||
@foreach($settings as $setting)
|
||||
<div>
|
||||
<label class="block font-semibold text-gray-700" for="{{ $setting->key }}">
|
||||
{{ Str::replace('_', ' ', Str::ucfirst($setting->key)) }}
|
||||
</label>
|
||||
|
||||
<input
|
||||
class="focus:ring-0 border-4 border-gray-200 rounded focus:border-[#eeb425] w-full @error($setting->key)border-red-600 ring-red-500 @enderror"
|
||||
id="{{ $setting->key }}" type="text" name="{{ $setting->key }}" value="{{ $setting->value }}" placeholder="{{ $setting->key }}" required>
|
||||
|
||||
@error($setting->key)
|
||||
<p class="mt-1 text-xs italic text-red-500">
|
||||
{{ $message }}
|
||||
</p>
|
||||
@enderror
|
||||
|
||||
<small>{{ $setting->comment }}</small>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
<x-form.secondary-button>
|
||||
{{ __('Continue to step 4') }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
|
||||
<div class="flex gap-x-4">
|
||||
<form action="{{ route('installation.previous-step') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.primary-button>
|
||||
{{ __('Previous step') }}
|
||||
</x-form.primary-button>
|
||||
</form>
|
||||
|
||||
<form action="{{ route('installation.restart') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.danger-button>
|
||||
{{ __('Restart installation') }}
|
||||
</x-form.danger-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
</x-installation-layout>
|
||||
@@ -0,0 +1,57 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<form action="{{ route('installation.save-step') }}" method="POST" class="space-y-3">
|
||||
@csrf
|
||||
|
||||
@foreach($settings as $setting)
|
||||
<div>
|
||||
<label class="block font-semibold text-gray-700" for="{{ $setting->key }}">
|
||||
{{ Str::replace('_', ' ', Str::ucfirst($setting->key)) }}
|
||||
</label>
|
||||
|
||||
<input
|
||||
class="focus:ring-0 border-4 border-gray-200 rounded focus:border-[#eeb425] w-full @error($setting->key)border-red-600 ring-red-500 @enderror"
|
||||
id="{{ $setting->key }}" type="text" name="{{ $setting->key }}" value="{{ $setting->value }}" placeholder="{{ $setting->key }}">
|
||||
|
||||
@error($setting->key)
|
||||
<p class="mt-1 text-xs italic text-red-500">
|
||||
{{ $message }}
|
||||
</p>
|
||||
@enderror
|
||||
|
||||
<small>{{ $setting->comment }}</small>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
<x-form.secondary-button>
|
||||
{{ __('Complete setup') }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
|
||||
<div class="flex gap-x-4">
|
||||
<form action="{{ route('installation.previous-step') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.primary-button>
|
||||
{{ __('Previous step') }}
|
||||
</x-form.primary-button>
|
||||
</form>
|
||||
|
||||
<form action="{{ route('installation.restart') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.danger-button>
|
||||
{{ __('Restart installation') }}
|
||||
</x-form.danger-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
</x-installation-layout>
|
||||
@@ -0,0 +1,76 @@
|
||||
<x-installation-layout>
|
||||
<x-content.installation-content-section icon="hotel-icon" classes="border">
|
||||
<x-slot:title>
|
||||
{{ __('Welcome to Atom CMS') }}
|
||||
</x-slot:title>
|
||||
|
||||
<x-slot:under-title>
|
||||
{{ __('We are delighted of having you trying Atom CMS') }}
|
||||
</x-slot:under-title>
|
||||
|
||||
<div class="space-y-3">
|
||||
<p>
|
||||
{{ __('Congratulations on successfully completing the Atom CMS setup! You have now taken the first steps towards an exciting new journey. With Atom CMS, you can effortlessly manage various aspect of your hotel, while giving your new visitors an easy gateway into a world of joy.') }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{{ __('You can at any time change the settings you went through. All it takes is for you to hop into your database and find the "website_settings" table and then tweak the settings you wish. Who knows... As you explore the features and functionalities of Atom CMS, you might discover features that will improve you and your users experience & helping you achieve your online goals!') }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{!! __('We also have written a throughout documentation, explaining tons of things regarding managing Atom CMS & other aspect of your hotel. You can visit our <a href=":documentation_link" target="_blank" class="font-semibold underline">comprehensive documentation right here</a>. Our goal is to keep expanding our coverage, so keep checking it from time to time.') !!}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{{ __('Lastly, we just want to show our gratitude by letting your know how delighted we are to be a part of your journey and we hope you will gain some amazing memories. So, here is to your new hotel, the boundless creativity it will inspire, and the endless possibilities that lie ahead.') }}
|
||||
</p>
|
||||
|
||||
<p class="font-semibold italic">
|
||||
{{ __('Once again, congratulations and best of wishes for you & your hotel!') }}
|
||||
</p>
|
||||
|
||||
<form action="{{ route('installation.complete') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.secondary-button>
|
||||
{{ __('Take me to :hotel', ['hotel' => setting('hotel_name')]) }}
|
||||
</x-form.secondary-button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="flex gap-x-4">
|
||||
<form action="{{ route('installation.previous-step') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.primary-button>
|
||||
{{ __('Previous step') }}
|
||||
</x-form.primary-button>
|
||||
</form>
|
||||
|
||||
<form action="{{ route('installation.restart') }}" method="POST" class="w-full mt-3">
|
||||
@csrf
|
||||
|
||||
<x-form.danger-button>
|
||||
{{ __('Restart installation') }}
|
||||
</x-form.danger-button>
|
||||
</form>
|
||||
</div>
|
||||
</x-content.installation-content-section>
|
||||
|
||||
<script>
|
||||
localStorage.setItem("theme", 'light');
|
||||
</script>
|
||||
|
||||
@if (setting('cms_color_mode') === 'dark')
|
||||
<script>
|
||||
localStorage.removeItem("theme");
|
||||
|
||||
if (localStorage.getItem("theme") === null) {
|
||||
document.documentElement.classList.add("dark");
|
||||
localStorage.setItem("theme", 'dark');
|
||||
}
|
||||
</script>
|
||||
@endif
|
||||
</x-installation-layout>
|
||||
Reference in New Issue
Block a user