Bachelorthesis_Code/frontend/src/components/InputField.js
cami 04cdc9dd7e Added various css things
- Designed login and register buttons
- removed some unnecessary css things
- changed some small things in the design
2021-06-23 03:16:09 +02:00

14 lines
329 B
JavaScript

import React from "react";
import "./Input.css";
function InputField(props) {
return (
<label className="input-field">
<p>{props.LabelName}</p>
<input name={props.InputName} onChange={props.onChange} type={props.InputType} placeholder={props.InputPlaceHolder}/>
</label>
);
}
export default InputField;