import styles from './Form.module.scss'; import { publicRuntimeConfig } from '@/config/runtime'; import axios from 'axios'; import { useState } from 'react'; const { APP_BASE_PATH } = publicRuntimeConfig; export function Form() { const [hasError, setHasError] = useState(false); return (
{ e.preventDefault(); const login = e.target[0].value; const password = e.target[1].value; const data = { login, password }; axios .post('/login', data) .then(() => { const url = (window.location.pathname.replace(APP_BASE_PATH, '') || '/') + (window.location.search || ''); window.location.replace(url); }) .catch(() => { setHasError(true); }); }} > {hasError ? Неверный логин или пароль : null}
); }