ca-grow-ops-manager/frontend/src/pages/LoginPage.tsx
fullsizemalt 6b724386ba
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s
feat: Phase 1 Complete (Backend + Frontend)
2025-12-09 09:24:00 -08:00

77 lines
3.5 KiB
TypeScript

import React, { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import api from '../lib/api';
import { useAuth } from '../context/AuthContext';
export default function LoginPage() {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [error, setError] = useState('');
const { login } = useAuth();
const navigate = useNavigate();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError('');
try {
const { data } = await api.post('/auth/login', { email, password });
login(data.token, data.user);
navigate('/');
} catch (err: any) {
setError(err.response?.data?.message || 'Login failed');
}
};
return (
<div className="min-h-screen bg-stone-100 flex items-center justify-center p-4">
<div className="max-w-md w-full bg-white rounded-2xl shadow-xl overflow-hidden border border-stone-200">
<div className="bg-emerald-900 p-8 text-center">
<h1 className="text-3xl font-bold text-emerald-100 tracking-tight">CA GROW OPS</h1>
<p className="text-emerald-400 mt-2 text-sm uppercase tracking-wider">Facility Management</p>
</div>
<form onSubmit={handleSubmit} className="p-8 space-y-6">
{error && (
<div className="p-3 bg-red-50 text-red-600 text-sm rounded border border-red-100">
{error}
</div>
)}
<div className="space-y-2">
<label className="text-sm font-medium text-stone-600">Email Address</label>
<input
type="email"
required
className="w-full px-4 py-3 rounded-lg border border-stone-300 focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition-all"
placeholder="admin@runfoo.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
</div>
<div className="space-y-2">
<label className="text-sm font-medium text-stone-600">Password</label>
<input
type="password"
required
className="w-full px-4 py-3 rounded-lg border border-stone-300 focus:ring-2 focus:ring-emerald-500 focus:border-emerald-500 outline-none transition-all"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
</div>
<button
type="submit"
className="w-full py-3 bg-emerald-600 hover:bg-emerald-700 text-white font-bold rounded-lg shadow-lg shadow-emerald-900/10 transition-transform active:scale-95"
>
Access Facility
</button>
</form>
<div className="bg-stone-50 p-4 text-center text-xs text-stone-400">
Authorized Personnel Only Runfoo Systems
</div>
</div>
</div>
);
}