mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-17 19:16:25 +00:00
142 lines
4.8 KiB
TypeScript
142 lines
4.8 KiB
TypeScript
"use client"
|
|
|
|
import type React from "react"
|
|
|
|
import { useState } from "react"
|
|
import { Button } from "./ui/button"
|
|
import { Input } from "./ui/input"
|
|
import { Label } from "./ui/label"
|
|
import { Lock, User, AlertCircle, Server } from "lucide-react"
|
|
import { getApiUrl } from "../lib/api-config"
|
|
import Image from "next/image"
|
|
|
|
interface LoginProps {
|
|
onLogin: () => void
|
|
}
|
|
|
|
export function Login({ onLogin }: LoginProps) {
|
|
const [username, setUsername] = useState("")
|
|
const [password, setPassword] = useState("")
|
|
const [error, setError] = useState("")
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
const handleLogin = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setError("")
|
|
|
|
if (!username || !password) {
|
|
setError("Please enter username and password")
|
|
return
|
|
}
|
|
|
|
setLoading(true)
|
|
|
|
try {
|
|
const response = await fetch(getApiUrl("/api/auth/login"), {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ username, password }),
|
|
})
|
|
|
|
const data = await response.json()
|
|
|
|
if (!response.ok) {
|
|
throw new Error(data.error || "Login failed")
|
|
}
|
|
|
|
// Save token
|
|
localStorage.setItem("proxmenux-auth-token", data.token)
|
|
onLogin()
|
|
} catch (err) {
|
|
setError(err instanceof Error ? err.message : "Login failed")
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen bg-background flex items-center justify-center p-4">
|
|
<div className="w-full max-w-md space-y-8">
|
|
<div className="text-center space-y-4">
|
|
<div className="flex justify-center">
|
|
<div className="w-20 h-20 relative flex items-center justify-center bg-primary/10 rounded-lg">
|
|
<Image
|
|
src="/images/proxmenux-logo.png"
|
|
alt="ProxMenux Logo"
|
|
width={80}
|
|
height={80}
|
|
className="object-contain"
|
|
priority
|
|
onError={(e) => {
|
|
const target = e.target as HTMLImageElement
|
|
target.style.display = "none"
|
|
const fallback = target.parentElement?.querySelector(".fallback-icon")
|
|
if (fallback) {
|
|
fallback.classList.remove("hidden")
|
|
}
|
|
}}
|
|
/>
|
|
<Server className="h-12 w-12 text-primary absolute fallback-icon hidden" />
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<h1 className="text-3xl font-bold">ProxMenux Monitor</h1>
|
|
<p className="text-muted-foreground mt-2">Sign in to access your dashboard</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-card border border-border rounded-lg p-6 shadow-lg">
|
|
<form onSubmit={handleLogin} className="space-y-4">
|
|
{error && (
|
|
<div className="bg-red-500/10 border border-red-500/20 rounded-lg p-3 flex items-start gap-2">
|
|
<AlertCircle className="h-5 w-5 text-red-500 flex-shrink-0 mt-0.5" />
|
|
<p className="text-sm text-red-500">{error}</p>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="login-username">Username</Label>
|
|
<div className="relative">
|
|
<User className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="login-username"
|
|
type="text"
|
|
placeholder="Enter your username"
|
|
value={username}
|
|
onChange={(e) => setUsername(e.target.value)}
|
|
className="pl-10"
|
|
disabled={loading}
|
|
autoComplete="username"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="login-password">Password</Label>
|
|
<div className="relative">
|
|
<Lock className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
id="login-password"
|
|
type="password"
|
|
placeholder="Enter your password"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
className="pl-10"
|
|
disabled={loading}
|
|
autoComplete="current-password"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<Button type="submit" className="w-full bg-blue-500 hover:bg-blue-600" disabled={loading}>
|
|
{loading ? "Signing in..." : "Sign In"}
|
|
</Button>
|
|
</form>
|
|
</div>
|
|
|
|
<p className="text-center text-sm text-muted-foreground">ProxMenux Monitor v1.0.1</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|