First working frontend for the login
This commit is contained in:
parent
9c0b57dbf8
commit
514de0e4ae
5 changed files with 64 additions and 0 deletions
12
frontend/src/components/InputField.js
Normal file
12
frontend/src/components/InputField.js
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue