import React from "react"; import { useState } from "react/cjs/react.development"; import "../../App.css"; import Footer from "../../Footer"; import InputField from "../InputField"; import SubmitField from "../SubmitField"; export default function Login() { const [username, setUsername] = useState('') const [password, setPassword] = useState('') const onSubmitClick = (e) => { e.preventDefault(); let opts = { username: username, password: password, }; console.log(opts); fetch("/api/register", { method: "post", body: JSON.stringify(opts), }) }; const handleUsernameChange = (e) => { setUsername(e.target.value); }; const handlePasswordChange = (e) => { setPassword(e.target.value); }; return ( <>

Registrierung