Started with the login function and it works more or less :-)

This commit is contained in:
cami 2021-06-22 03:41:14 +02:00
parent 8e77306c93
commit 8d4d166924
8 changed files with 300 additions and 58 deletions

View file

@ -5,7 +5,7 @@ function InputField(props) {
return (
<label className="input-field">
<p>{props.LabelName}</p>
<input name={props.InputName} type={props.InputType} />
<input name={props.InputName} onChange={props.onChange} type={props.InputType} />
</label>
);
}