This commit includes: - Django backend with multi-tenancy (django-tenants) - React + TypeScript frontend with Vite - Platform administration API with role-based access control - Authentication system with token-based auth - Quick login dev tools for testing different user roles - CORS and CSRF configuration for local development - Docker development environment setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<!-- CSP: Disabled in development due to browser extension conflicts. Enable in production via server headers. -->
|
|
<title>Smooth Schedule - Multi-Tenant Scheduling</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
/* Ensure full height for the app */
|
|
html, body, #root {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Custom scrollbar for the timeline */
|
|
.timeline-scroll::-webkit-scrollbar {
|
|
height: 8px;
|
|
width: 8px;
|
|
}
|
|
.timeline-scroll::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
.dark .timeline-scroll::-webkit-scrollbar-track {
|
|
background: #1e293b;
|
|
}
|
|
.timeline-scroll::-webkit-scrollbar-thumb {
|
|
background: #cbd5e1;
|
|
border-radius: 4px;
|
|
}
|
|
.dark .timeline-scroll::-webkit-scrollbar-thumb {
|
|
background: #475569;
|
|
}
|
|
.timeline-scroll::-webkit-scrollbar-thumb:hover {
|
|
background: #94a3b8;
|
|
}
|
|
.dark .timeline-scroll::-webkit-scrollbar-thumb:hover {
|
|
background: #64748b;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-white antialiased transition-colors duration-200">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|