import React from "react"; import Head from 'next/head'; import Image from 'next/image'; import { connect } from "react-redux"; import { withRouter } from 'next/router'; import { reduxWrapper } from '../store'; import Header from './components/Header'; import Footer from './components/Footer'; import MainHeader from "./components/MainHeader"; import FormRequest from "./components/FormRequest"; import { sendLoginForm } from '../actions'; class LoginPage extends React.Component { constructor(props) { super(props); this.state = { username: "", password: "", }; } _handle_onSubmit = (event) => { event.preventDefault(); const { username, password } = this.state; sendLoginForm({ username, password }); } render() { const { username, password } = this.state; return ( ЛК Эволюция автолизинга

Личный кабинет