Files
2026-05-09 17:32:17 +02:00

65 lines
2.9 KiB
PHP
Executable File

@extends('layouts.app')
@section('title', __('flash_client'))
@section('content')
<div class="container mx-auto px-4 py-8">
<div class="max-w-4xl mx-auto">
<div class="bg-white rounded-lg shadow-md p-8">
<h1 class="text-3xl font-bold text-center mb-6">{{ __('flash_client') }}</h1>
<div class="text-center mb-8">
<p class="text-gray-600 mb-4">
{{ __('welcome_flash') }}
</p>
<p class="text-sm text-gray-500">
{{ __('sso_ticket') }}
</p>
</div>
<div class="bg-gray-50 rounded-lg p-6 mb-4">
<h3 class="font-semibold mb-2">{{ __('download_options') }}</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-4">
<div class="bg-white p-4 rounded-lg border border-gray-200">
<h4 class="font-medium mb-2">{{ __('windows') }}</h4>
<p class="text-sm text-gray-600 mb-2">{{ __('recommended_windows') }}</p>
<a href="#" class="block w-full text-center bg-blue-600 text-white py-2 rounded hover:bg-blue-700 transition">
{{ __('download_exe') }}
</a>
</div>
<div class="bg-white p-4 rounded-lg border border-gray-200">
<h4 class="font-medium mb-2">{{ __('macos') }}</h4>
<p class="text-sm text-gray-600 mb-2">{{ __('for_macos') }}</p>
<a href="#" class="block w-full text-center bg-blue-600 text-white py-2 rounded hover:bg-blue-700 transition">
{{ __('download_dmg') }}
</a>
</div>
<div class="bg-white p-4 rounded-lg border border-gray-200">
<h4 class="font-medium mb-2">{{ __('linux') }}</h4>
<p class="text-sm text-gray-600 mb-2">{{ __('for_linux') }}</p>
<a href="#" class="block w-full text-center bg-blue-600 text-white py-2 rounded hover:bg-blue-700 transition">
{{ __('download_appimage') }}
</a>
</div>
</div>
</div>
<div class="bg-green-50 border border-green-200 rounded-lg p-4 mb-6">
<h4 class="font-semibold text-green-800 mb-2">{{ __('sso_authentication') }}</h4>
<p class="text-sm text-green-700">
{{ __('sso_description') }}
</p>
</div>
<div class="flex justify-center">
<a href="{{ route('welcome') }}" class="bg-gray-600 text-white px-6 py-2 rounded hover:bg-gray-700 transition">
{{ __('back_to_home') }}
</a>
</div>
</div>
</div>
</div>
@endsection