First working frontend for the login

This commit is contained in:
cami 2021-06-21 03:51:15 +02:00
parent 9c0b57dbf8
commit 514de0e4ae
5 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import React from "react";
function InputField(props) {
return (
<label>
<p>{props.LabelName}</p>
<input name={props.InputName} type={props.InputType} />
</label>
);
}
export default InputField;