Files
Atomcms-edit/resources/themes/atom/views/banned.blade.php
T
root c53a5a8a2c Complete Hubbly theme conversion: all pages rewritten with CSS variable theming
- Converted all views from Dusk components (x-content.content-card, x-form.*) to inline Hubbly style
- All pages use consistent card pattern: rounded-lg, gradient headers, color-mix borders
- Added Hubbly-style homepage with 2-column layout, login card, swiper news carousel
- Rewrote navigation with Alpine.js dropdowns, CSS variable colors, Hubbly assets
- Updated profile page with Hubbly cards, fixed data bugs (friend/guild relationships)
- Rewrote register page to match Hubbly layout: banner header, avatar preview with Frank GIF, 2-column form, avatar carousel selector, border-4 inputs
- Rewrote login, settings, help center, radio, applications, utility pages
- All colors use CSS variables controlled by Filament theme editor
- Added Hubbly assets: banner, Frank GIF, navigation icons, online badge
- Removed all dependencies on x-content.* and x-form.* components
2026-06-27 17:01:02 +02:00

47 lines
1.5 KiB
PHP
Executable File

<x-app-layout>
@push('title', __('Banned'))
<div class="col-span-12 flex justify-center text-[var(--color-text)]">
<div class="space-y-4 lg:w-1/2">
<div class="w-full rounded-md bg-red-500 p-2 text-center text-[var(--color-text)]">
{{ __('It seems like you are banned off :hotel', ['hotel' => setting('hotel_name')]) }}
</div>
<div class="rounded-md p-2 shadow-sm bg-white dark:bg-[var(--color-surface)]">
<div class="flex justify-between">
<div class="flex flex-col px-1">
<div class="max-w-[380px]">
<p>
<strong>{{ __('Ban type:') }}</strong> {{ $ban->type }}
</p>
<p>
<strong>{{ __('Ban reason:') }}</strong> {{ $ban->ban_reason }}
</p>
<p>
<strong>{{ __('Ban expiration:') }}</strong> {{ date('Y/m/d', $ban->ban_expire) }}
</p>
</div>
<div class="mt-4 max-w-[380px]">
<p class="mb-4">
{{ __('If you believe this is a mistake, please reach out to one of our staff members through our Discord server!') }}
</p>
<a href="{{ is_array(setting('discord_invitation_link')) ? '' : setting('discord_invitation_link') }}" target="_blank">
<button type="submit" class="rounded-lg px-4 py-2 text-sm font-semibold transition-all duration-200 hover:opacity-90" style="background-color: var(--color-primary); color: var(--button-text-color);">
{{ __('Join discord') }}
</button>
</a>
</div>
</div>
<div class="mr-8 hidden items-center lg:flex">
<img src="{{ asset('assets/images/angry_frank.png') }}" alt="">
</div>
</div>
</div>
</div>
</div>
</x-app-layout>