blob: 4d812349bebf7b04c512de09948205b4ec5de0bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
import { useState } from "react";
import { useLocation } from "wouter";
import { useAuth } from "../contexts/AuthContext";
export function Login() {
const [username, setUsername] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState("");
const [isLoading, setIsLoading] = useState(false);
const { login } = useAuth();
const [, setLocation] = useLocation();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setError("");
setIsLoading(true);
const result = await login(username, password);
if (result.success) {
setLocation("/");
} else {
setError(result.error);
}
setIsLoading(false);
};
return (
<div className="flex justify-center items-center min-h-screen bg-gray-100">
<div className="bg-white p-8 rounded-lg shadow w-full max-w-md">
<h1 className="mb-6 text-center text-2xl font-bold">Feedaka Login</h1>
<form onSubmit={handleSubmit}>
<div className="mb-4">
<label htmlFor="username" className="block mb-2">
Username
</label>
<input
id="username"
type="text"
value={username}
onChange={(e) => setUsername(e.target.value)}
required
className="w-full p-2 border border-gray-300 rounded disabled:opacity-70 disabled:cursor-not-allowed"
disabled={isLoading}
/>
</div>
<div className="mb-4">
<label htmlFor="password" className="block mb-2">
Password
</label>
<input
id="password"
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
className="w-full p-2 border border-gray-300 rounded disabled:opacity-70 disabled:cursor-not-allowed"
disabled={isLoading}
/>
</div>
{error && (
<div className="text-red-600 mb-4 p-2 bg-red-50 rounded">
{error}
</div>
)}
<button
type="submit"
disabled={isLoading}
className="w-full p-3 bg-blue-500 text-white rounded cursor-pointer hover:bg-blue-600 disabled:opacity-70 disabled:cursor-not-allowed"
>
{isLoading ? "Logging in..." : "Login"}
</button>
</form>
</div>
</div>
);
}
|