backup_service/client/templates/success.html
2026-01-19 10:27:20 +03:00

18 lines
No EOL
948 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Successful</title>
<!-- Load Tailwind via the Play CDN so we can use utility classes immediately -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="bg-gray-50">
<div class="max-w-lg mx-auto my-12 bg-white p-8 rounded shadow">
<h1 class="text-2xl font-bold mb-4">Registration Successful</h1>
<p class="mb-6">Your backup client has been registered successfully. You can now manage this client from the server interface.</p>
<a href="{{ server_url }}/clients/{{ client_id }}" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
Go to Client Dashboard
</a>
</div>
</body>
</html>