Spaces:
Building
Building
File size: 615 Bytes
656c481 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error - Whats App Ping</title>
<link href="/global.css" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<main class="h-screen flex flex-col items-center justify-center">
<div class="border rounded-b-lg shadow-sm w-full max-w-md p-6">
<h1 class="text-red-400 text-lg font-medium text-center py-12">
Error: <%= message %>
</h1>
</div>
</main>
</body>
</html>
|