import axios from 'axios'; import { FormEvent, useContext } from 'react'; import { NavBar } from '../components/navbar'; import { CenteredPage } from '../components/page'; import { Vierkant, Input, Button } from '../components/ui'; import { ToastContext, toastType } from '../components/toast'; import ReportProblemOutlinedIcon from '@material-ui/icons/ReportProblemOutlined'; import VpnKeyIcon from '@material-ui/icons/VpnKey'; import ErrorOutlineIcon from '@material-ui/icons/ErrorOutline'; function submitLogin(event?: FormEvent, toast?: toastType) { event?.preventDefault(); var formData = { email: (document.getElementById("email") as HTMLInputElement).value, password: (document.getElementById("password") as HTMLInputElement).value } if ( !formData.email || !formData.password ) { toast("Vul alsjeblieft alle velden in!", "error", ); return; } axios({ method: "post", url: `${window.location.origin}/api/auth/login`, headers: {"content-type": "application/json"}, data: formData }) .then(() => window.location.pathname = "/") .catch(error => { if (error.response.status === 401) { toast("Verkeerde gebruikersnaam of wachtwoord!", "error", ); return; } toast("Er is iets fout gegaan", "error", ); }); } export default function LoginPage() { var { toast } = useContext(ToastContext); return (
submitLogin(e, toast)}>
); }