- Add comprehensive error handling system with custom error pages - Implement professional enterprise-style design with Tailwind CSS - Create modular HMVC architecture with clean separation of concerns - Add security features: CSRF protection, XSS filtering, Argon2ID hashing - Include CLI tools for development workflow - Add error reporting dashboard with system monitoring - Implement responsive design with consistent slate color scheme - Replace all emoji icons with professional SVG icons - Add comprehensive test suite with PHPUnit - Include database migrations and seeders - Add proper exception handling with fallback pages - Implement template engine with custom syntax support - Add helper functions and facades for clean code - Include proper logging and debugging capabilities
61 lines
2.5 KiB
PHP
61 lines
2.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $title }}</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'sans': ['Inter', 'system-ui', 'sans-serif'],
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body class="font-sans bg-gray-50 min-h-screen p-8">
|
|
<div class="max-w-4xl mx-auto">
|
|
<div class="bg-white rounded-xl shadow-sm border border-gray-200 p-8">
|
|
<div class="text-center mb-8">
|
|
<div class="text-6xl mb-4">🧪</div>
|
|
<h1 class="text-4xl font-bold text-gray-900 mb-4">{{ $title }}</h1>
|
|
<p class="text-lg text-gray-600">Welcome to the TestModule! This is a testing module for the Woles Framework.</p>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
<div class="bg-blue-50 border border-blue-200 rounded-lg p-6 text-center">
|
|
<div class="text-3xl mb-3">⚡</div>
|
|
<h3 class="text-lg font-semibold text-blue-900 mb-2">Fast Performance</h3>
|
|
<p class="text-blue-700 text-sm">Optimized for speed and efficiency</p>
|
|
</div>
|
|
|
|
<div class="bg-green-50 border border-green-200 rounded-lg p-6 text-center">
|
|
<div class="text-3xl mb-3">🔒</div>
|
|
<h3 class="text-lg font-semibold text-green-900 mb-2">Secure</h3>
|
|
<p class="text-green-700 text-sm">Built with security in mind</p>
|
|
</div>
|
|
|
|
<div class="bg-purple-50 border border-purple-200 rounded-lg p-6 text-center">
|
|
<div class="text-3xl mb-3">🎨</div>
|
|
<h3 class="text-lg font-semibold text-purple-900 mb-2">Modern UI</h3>
|
|
<p class="text-purple-700 text-sm">Beautiful Tailwind CSS design</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-8 text-center">
|
|
<a href="/" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition-colors">
|
|
Back to Home
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |