Files
Agentic-OS/frontend/app/login/page.tsx
nearxos 6185b9b85a Initial commit: Agentic OS troubleshooting platform
Self-hosted, Docker-based agentic troubleshooting platform: FastAPI backend +
LangGraph agent, Next.js UI, tiered LLM routing (local Ollama -> Gemini ->
DeepSeek -> OpenRouter), MCP server manager, encrypted device credentials,
RBAC, audit log, project-memory + Obsidian integrations, and editable
troubleshooting decision rules tuned for the GeneseasX vessel stack.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-14 22:11:07 +03:00

83 lines
2.5 KiB
TypeScript

"use client";
import { useEffect, useState } from "react";
import { useRouter } from "next/navigation";
import { useAuth } from "@/lib/auth";
export default function LoginPage() {
const { login, user, loading } = useAuth();
const router = useRouter();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState<string | null>(null);
const [busy, setBusy] = useState(false);
useEffect(() => {
if (!loading && user) router.replace("/");
}, [loading, user, router]);
const submit = async (e: React.FormEvent) => {
e.preventDefault();
setBusy(true);
setError(null);
try {
await login(email, password);
} catch (err: any) {
setError(err.message || "Login failed");
} finally {
setBusy(false);
}
};
return (
<div className="grid min-h-screen place-items-center p-4">
<div className="w-full max-w-sm">
<div className="mb-6 flex items-center gap-3">
<div className="grid h-12 w-12 place-items-center rounded-2xl bg-gradient-to-br from-accent to-accent2 text-xl font-bold text-white">
A
</div>
<div>
<h1 className="text-xl font-semibold">Agentic OS</h1>
<p className="text-sm text-muted">Sign in to continue</p>
</div>
</div>
<form onSubmit={submit} className="card space-y-4">
<div>
<label htmlFor="login-email" className="label">
Email
</label>
<input
id="login-email"
className="input"
type="email"
autoComplete="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
autoFocus
required
/>
</div>
<div>
<label htmlFor="login-password" className="label">
Password
</label>
<input
id="login-password"
className="input"
type="password"
autoComplete="current-password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
</div>
{error && <div className="text-sm text-bad">{error}</div>}
<button className="btn-primary w-full" disabled={busy}>
{busy ? "Signing in…" : "Sign in"}
</button>
</form>
</div>
</div>
);
}