mirror of
https://github.com/dyzulk/dyzulk-apps.git
synced 2026-01-26 05:15:31 +07:00
23 lines
763 B
PHP
23 lines
763 B
PHP
<main class="h-full pb-16 overflow-y-auto">
|
|
<!-- Remove everything INSIDE this div to a really blank page -->
|
|
<div class="container px-6 mx-auto grid">
|
|
<h2
|
|
class="my-6 text-2xl font-semibold text-gray-700 dark:text-gray-200"
|
|
>
|
|
<?= $title; ?>
|
|
</h2>
|
|
<div class="grid gap-6 mb-8 md:grid-cols-2">
|
|
<div
|
|
class="min-w-0 p-4 bg-white rounded-lg shadow-xs dark:bg-gray-800"
|
|
>
|
|
<h4 class="mb-4 font-semibold text-gray-800 dark:text-gray-300">
|
|
Update your Password
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|