more
This commit is contained in:
@@ -3,29 +3,56 @@ import "../../styles/casetype-page.scss";
|
||||
const CaseTypePage = () => {
|
||||
const [email, setEmail] = useState("");
|
||||
const [contactName, setContactName] = useState("");
|
||||
const [billingCode, setBillingCode] = useState("");
|
||||
const [leadAttorney, setLeadAttorney] = useState("");
|
||||
|
||||
return (
|
||||
<div className="type-row">
|
||||
<div className="type-col">
|
||||
<input
|
||||
type="email"
|
||||
className="form-control"
|
||||
id="emailInput"
|
||||
placeholder="Contact Name"
|
||||
value={email}
|
||||
onChange={(e) => setContactName(e.target.value)}
|
||||
></input>
|
||||
<>
|
||||
<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-col">
|
||||
<input
|
||||
type="email"
|
||||
className="form-control"
|
||||
id="emailInput"
|
||||
placeholder="Contact Email"
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
></input>
|
||||
<div className="type-row">
|
||||
<div className="type-col">
|
||||
<input
|
||||
type="email"
|
||||
className="form-control"
|
||||
id="emailInput"
|
||||
placeholder="Contact Name"
|
||||
value={contactName}
|
||||
onChange={(e) => setContactName(e.target.value)}
|
||||
></input>
|
||||
</div>
|
||||
<div className="type-col">
|
||||
<input
|
||||
type="email"
|
||||
className="form-control"
|
||||
id="emailInput"
|
||||
placeholder="Contact Email"
|
||||
value={email}
|
||||
onChange={(e) => setEmail(e.target.value)}
|
||||
></input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user