readysite / website / views / admin.html
753 B
admin.html
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Admin - ReadySite</title>
    <link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" crossorigin="anonymous" />
    <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4" crossorigin="anonymous"></script>
    <style>
        body { overflow: hidden; }
    </style>
    {{frontend_script}}
</head>
<body class="h-screen bg-base-200">
    {{render "App" (dict "user" (dict "id" auth.CurrentUser.ID "email" auth.CurrentUser.Email "name" auth.CurrentUser.Name "role" auth.CurrentUser.Role) "tourCompleted" admin.TourCompleted)}}
</body>
</html>
← Back