kocraft-backend/Craft/module/templates.py

16 lines
441 B
Python
Raw Normal View History

2024-07-15 08:47:42 +00:00
INDEX_TEMPLATE: str = """
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>CraftINF</title>
</head>
<body class="bg-gray-800">
<div class="flex flex-col items-center justify-center h-screen">
<h1 class="text-4xl text-white">Welcome to CraftINF</h1>
</div>
</body>
</html>
"""