| defined('_JEXEC') or die; | |
| use Joomla\CMS\Factory; | |
| use Joomla\CMS\HTML\HTMLHelper; | |
| $doc = Factory::getApplication()->getDocument(); | |
| <!DOCTYPE html> | |
| <html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <jdoc:include type="head" /> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Nunito', sans-serif; | |
| background-color: #FDF8F3; | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen flex items-center justify-center p-4"> | |
| <div class="max-w-2xl w-full bg-white rounded-3xl shadow-lg p-8 border border-orange-100"> | |
| <jdoc:include type="component" /> | |
| </div> | |
| </body> | |
| </html> |