changes in input fields

This commit is contained in:
2026-03-01 19:46:07 +08:00
parent d86f71ee6a
commit caf39da334
11 changed files with 129 additions and 59 deletions

View File

@@ -2,6 +2,7 @@ import React from "react";
import TopHeader from "@/app/components/topHeader/TopHeader";
import globalStyle from "../../globalStyle.module.css";
import addUserStyle from "./styles.module.css";
import TextField from "@/app/components/fields/textfield";
const page = () => {
return (
@@ -55,13 +56,7 @@ const page = () => {
</div>
{/* Input field */}
<div className={addUserStyle.inputField}>
<input
type="text"
name=""
id=""
placeholder="Enter Email"
className={addUserStyle.placeholderTxt}
/>
<TextField placeHolder="Enter email" />
</div>
</div>
</div>
@@ -74,13 +69,7 @@ const page = () => {
</div>
{/* Input field */}
<div className={addUserStyle.inputField}>
<input
type="text"
name=""
id=""
placeholder="Enter full name"
className={addUserStyle.placeholderTxt}
/>
<TextField placeHolder="Enter full name" />
</div>
</div>
</div>