37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Keka</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="min-h-screen bg-gray-50 flex items-center justify-center">
|
|
|
|
<div class="bg-white rounded-2xl shadow-lg p-10 w-full max-w-md text-center space-y-6">
|
|
|
|
<div class="flex justify-center">
|
|
<div class="w-14 h-14 rounded-xl flex items-center justify-center" style="background:#FF6C37">
|
|
<span class="text-white font-bold text-2xl">K</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h1 class="text-2xl font-bold text-gray-800">Keka HR</h1>
|
|
<p class="text-gray-500 text-sm mt-1">Open Keka via Microsoft SSO</p>
|
|
</div>
|
|
|
|
<a href="{{ route('keka.open') }}" target="_blank" rel="noopener"
|
|
class="flex items-center justify-center gap-2 w-full text-white font-semibold py-3 px-6 rounded-xl transition duration-150"
|
|
style="background:#FF6C37">
|
|
Open Keka
|
|
</a>
|
|
|
|
<p class="text-xs text-gray-400">
|
|
Opens Keka in a new tab. If you're already signed into Microsoft in this browser, you'll be logged in automatically.
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |