Spaces:
Sleeping
Sleeping
File size: 622 Bytes
c36e25a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }} - My App</title>
<script src="https://cdn.jsdelivr.net/npm/appwrite@15.0.0"></script>
<script src="/js/auth.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center">
<div class="bg-white p-8 rounded-lg shadow-md w-full max-w-md">
{% block content %}{% endblock %}
</div>
{% block scripts %}{% endblock %}
</body>
</html> |