21 lines
703 B
HTML
Executable File
21 lines
703 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>3D Printer Management</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.14.0/dist/full.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-black text-white">
|
|
<nav class="bg-gray-800 p-4">
|
|
<div class="container mx-auto">
|
|
<h1 class="text-xl">3D Printer Management Dashboard</h1>
|
|
</div>
|
|
</nav>
|
|
<div class="container mx-auto mt-5">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|