Register field in frontend. still needs some design things

This commit is contained in:
cami 2021-06-21 04:55:31 +02:00
parent 514de0e4ae
commit 9621a12f0c
5 changed files with 18 additions and 15 deletions

View file

@ -1,8 +1,9 @@
import React from "react";
import "./Input.css";
function InputField(props) {
return (
<label>
<label className="input-field">
<p>{props.LabelName}</p>
<input name={props.InputName} type={props.InputType} />
</label>