import { Form, Button, Card, Tabs, Tab } from "react-bootstrap" import { useNavigate } from "react-router-dom"; import { useAuth } from "../hooks/api"; import { setToken } from "../utils/auth"; function LoginPage() { const navigate = useNavigate() const doAuth = useAuth() const handleAuth = (newAccount) => (event) => { event.preventDefault(); event.stopPropagation(); const formData = new FormData(event.currentTarget) const data = { email: formData.get('email'), name: newAccount ? formData.get('name') : undefined, password: formData.get('password') } const token = "a" // doAuth(data, newAccount) setToken(token) navigate("/") } return (
Почта Имя Фамилия Пароль
Почта Пароль
) } export default LoginPage