more
This commit is contained in:
@@ -3,7 +3,33 @@ import "../../styles/casetype-page.scss";
|
|||||||
const CaseTypePage = () => {
|
const CaseTypePage = () => {
|
||||||
const [email, setEmail] = useState("");
|
const [email, setEmail] = useState("");
|
||||||
const [contactName, setContactName] = useState("");
|
const [contactName, setContactName] = useState("");
|
||||||
|
const [billingCode, setBillingCode] = useState("");
|
||||||
|
const [leadAttorney, setLeadAttorney] = useState("");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
<>
|
||||||
|
<div className="type-row">
|
||||||
|
<div className="type-col">
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
className="form-control"
|
||||||
|
id="attorneyInput"
|
||||||
|
placeholder="Lead Attorney"
|
||||||
|
value={leadAttorney}
|
||||||
|
onChange={(e) => setLeadAttorney(e.target.value)}
|
||||||
|
></input>
|
||||||
|
</div>
|
||||||
|
<div className="type-col">
|
||||||
|
<input
|
||||||
|
type="email"
|
||||||
|
className="form-control"
|
||||||
|
id="billingInput"
|
||||||
|
placeholder="Billing Code"
|
||||||
|
value={billingCode}
|
||||||
|
onChange={(e) => setBillingCode(e.target.value)}
|
||||||
|
></input>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div className="type-row">
|
<div className="type-row">
|
||||||
<div className="type-col">
|
<div className="type-col">
|
||||||
<input
|
<input
|
||||||
@@ -11,7 +37,7 @@ const CaseTypePage = () => {
|
|||||||
className="form-control"
|
className="form-control"
|
||||||
id="emailInput"
|
id="emailInput"
|
||||||
placeholder="Contact Name"
|
placeholder="Contact Name"
|
||||||
value={email}
|
value={contactName}
|
||||||
onChange={(e) => setContactName(e.target.value)}
|
onChange={(e) => setContactName(e.target.value)}
|
||||||
></input>
|
></input>
|
||||||
</div>
|
</div>
|
||||||
@@ -26,6 +52,7 @@ const CaseTypePage = () => {
|
|||||||
></input>
|
></input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user