changes in input fields
This commit is contained in:
@@ -4,6 +4,7 @@ import globalStyle from "../../globalStyle.module.css";
|
||||
import editUserStyle from "./styles.module.css";
|
||||
import Prompts from "@/app/components/prompts/Prompts";
|
||||
import { useState } from "react";
|
||||
import TextField from "@/app/components/fields/textfield";
|
||||
|
||||
const Page = () => {
|
||||
const sampleData = [
|
||||
@@ -23,8 +24,6 @@ const Page = () => {
|
||||
// { permission: "service.update" },
|
||||
];
|
||||
|
||||
const [showPrompt, setShowPrompt] = useState(false);
|
||||
|
||||
return (
|
||||
<div className={globalStyle.section}>
|
||||
<div className={globalStyle.mainContainer}>
|
||||
@@ -73,15 +72,11 @@ const Page = () => {
|
||||
</div>
|
||||
{/* Input field */}
|
||||
<div className={editUserStyle.inputField}>
|
||||
<input
|
||||
type="text"
|
||||
name=""
|
||||
id=""
|
||||
placeholder="nino.moonshot@gmail.com" //static
|
||||
className={editUserStyle.placeholderTxt}
|
||||
<TextField
|
||||
placeHolder="nino.moonshot@gmail.com" //static
|
||||
/>
|
||||
</div>
|
||||
<Prompts show={showPrompt} />
|
||||
<Prompts show={false} />
|
||||
</div>
|
||||
</div>
|
||||
{/* Full Name */}
|
||||
@@ -94,15 +89,11 @@ const Page = () => {
|
||||
</div>
|
||||
{/* Input field */}
|
||||
<div className={editUserStyle.inputField}>
|
||||
<input
|
||||
type="text"
|
||||
name=""
|
||||
id=""
|
||||
placeholder="Nino Paul Cervantes" //static
|
||||
className={editUserStyle.placeholderTxt}
|
||||
<TextField
|
||||
placeHolder="Nino Paul Cervantes" //static
|
||||
/>
|
||||
</div>
|
||||
<Prompts show={showPrompt} />
|
||||
<Prompts show={false} />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user