Finalish MVP

This commit is contained in:
mdares
2026-01-05 16:36:00 +00:00
parent 538b06bd4b
commit ea92b32618
19 changed files with 2289 additions and 701 deletions

View File

@@ -2,11 +2,13 @@
import { useSearchParams, useRouter } from "next/navigation";
import { useState } from "react";
import { useI18n } from "@/lib/i18n/useI18n";
export default function LoginForm() {
const router = useRouter();
const searchParams = useSearchParams();
const next = searchParams.get("next") || "/machines";
const { t } = useI18n();
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
@@ -27,14 +29,14 @@ export default function LoginForm() {
const data = await res.json().catch(() => ({}));
if (!res.ok || !data.ok) {
setErr(data.error || "Login failed");
setErr(data.error || t("login.error.default"));
return;
}
router.push(next);
router.refresh();
} catch (e: any) {
setErr(e?.message || "Network error");
setErr(e?.message || t("login.error.network"));
} finally {
setLoading(false);
}
@@ -43,12 +45,12 @@ export default function LoginForm() {
return (
<div className="min-h-screen bg-black flex items-center justify-center p-6">
<form onSubmit={onSubmit} className="w-full max-w-md rounded-2xl border border-white/10 bg-white/5 p-8">
<h1 className="text-2xl font-semibold text-white">Control Tower</h1>
<p className="mt-1 text-sm text-zinc-400">Sign in to your organization</p>
<h1 className="text-2xl font-semibold text-white">{t("login.title")}</h1>
<p className="mt-1 text-sm text-zinc-400">{t("login.subtitle")}</p>
<div className="mt-6 space-y-4">
<div>
<label className="text-sm text-zinc-300">Email</label>
<label className="text-sm text-zinc-300">{t("login.email")}</label>
<input
className="mt-1 w-full rounded-xl border border-white/10 bg-black/40 px-4 py-3 text-white outline-none"
value={email}
@@ -58,7 +60,7 @@ export default function LoginForm() {
</div>
<div>
<label className="text-sm text-zinc-300">Password</label>
<label className="text-sm text-zinc-300">{t("login.password")}</label>
<input
type="password"
className="mt-1 w-full rounded-xl border border-white/10 bg-black/40 px-4 py-3 text-white outline-none"
@@ -75,13 +77,13 @@ export default function LoginForm() {
disabled={loading}
className="mt-2 w-full rounded-xl bg-emerald-400 py-3 font-semibold text-black disabled:opacity-70"
>
{loading ? "Signing in..." : "Login"}
{loading ? t("login.submit.loading") : t("login.submit.default")}
</button>
<div className="text-xs text-zinc-500">
New here?{" "}
{t("login.newHere")}{" "}
<a href="/signup" className="text-emerald-300 hover:text-emerald-200">
Create an account
{t("login.createAccount")}
</a>
</div>
</div>