mirror of
https://github.com/TronoSfera/backup_service.git
synced 2026-05-19 02:23:33 +03:00
18 lines
No EOL
948 B
HTML
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> |