83 lines
3.5 KiB
HTML
83 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Job Tracking - Login</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/pocketbase@latest/dist/pocketbase.umd.js"></script>
|
|
</head>
|
|
<body class="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100 flex items-center justify-center p-4">
|
|
<div class="max-w-md w-full bg-white rounded-lg shadow-xl p-8">
|
|
<div class="text-center mb-8">
|
|
<h1 class="text-3xl font-bold text-gray-800 mb-2">Job Tracking</h1>
|
|
<p class="text-gray-600">Sign in to your account</p>
|
|
</div>
|
|
|
|
<div id="errorMessage" class="hidden bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg text-sm mb-4"></div>
|
|
|
|
<form id="loginForm" class="space-y-6">
|
|
<div>
|
|
<label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email</label>
|
|
<input
|
|
type="email"
|
|
id="email"
|
|
name="email"
|
|
required
|
|
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent outline-none transition text-base"
|
|
placeholder="Enter your email"
|
|
>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password" class="block text-sm font-medium text-gray-700 mb-2">Password</label>
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
required
|
|
class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-transparent outline-none transition text-base"
|
|
placeholder="Enter your password"
|
|
>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
id="loginButton"
|
|
class="w-full bg-indigo-600 text-white py-3 px-4 rounded-lg font-medium hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 transition disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
Sign In
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="js/pocketbase.js"></script>
|
|
<script src="js/auth.js"></script>
|
|
<script>
|
|
document.getElementById('loginForm').addEventListener('submit', async (e) => {
|
|
e.preventDefault();
|
|
const email = document.getElementById('email').value;
|
|
const password = document.getElementById('password').value;
|
|
const errorMessage = document.getElementById('errorMessage');
|
|
const loginButton = document.getElementById('loginButton');
|
|
|
|
// Disable button and show loading state
|
|
loginButton.disabled = true;
|
|
loginButton.textContent = 'Signing in...';
|
|
errorMessage.classList.add('hidden');
|
|
|
|
try {
|
|
await login(email, password);
|
|
window.location.href = 'dashboard.html';
|
|
} catch (error) {
|
|
errorMessage.textContent = error.message || 'Login failed. Please try again.';
|
|
errorMessage.classList.remove('hidden');
|
|
loginButton.disabled = false;
|
|
loginButton.textContent = 'Sign In';
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|