diff --git a/src/Components/Document/DocEditPage.js b/src/Components/Document/DocEditPage.js index e3183b4..0e5fa20 100644 --- a/src/Components/Document/DocEditPage.js +++ b/src/Components/Document/DocEditPage.js @@ -1,6 +1,7 @@ import { useState, useContext, useEffect } from "react"; import NewYorkCaption from "./captionHeaders/newYorkCaption.js"; import NewJerseyCaption from "./captionHeaders/newJerseyCaption.js"; +import FloridaCaption from "./captionHeaders/floridaCaption.js"; import { useParams } from "react-router-dom"; import { Link, useNavigate } from "react-router-dom"; import EditElement from "../../pageElements/EditElement"; @@ -84,6 +85,14 @@ const DocEditPage = () => { onScrollClick={onScrollClick} /> ); + case "Florida": + return ( + + ); default: return ( { + const { fetchedCase, displayCopy, onScrollClick } = props; + + return ( + <> +
+
+
+
+ IN THE CIRCUIT COURT OF THE{" "} + {fetchedCase?.jurisdiction.toUpperCase()} +
+
+ OF FLORIDA, IN AND FOR {fetchedCase?.venue.toUpperCase()} +
+
+
+
+
+
+
+
Edit Document
+
+
+
+ {fetchedCase?.caption ? fetchedCase?.caption.toUpperCase() : <>}, +
+
+
+
+
Plaintiff(s),
+
+ Case No. {fetchedCase?.caseNumber} +
+
+
+
+
v.
+ {/*
Judge: {fetchedCase?.judge}
*/} +
+
+ {fetchedCase?.captionTwo ? ( + fetchedCase?.captionTwo.toUpperCase() + ) : ( + <> + )} + , +
+
+
+
Defendant(s)
+
+
+
+ ________________________________________________________________/ +
+
+
+
+
+ + Scroll + +
+
+
+ + ); +}; + +export default FloridaCaption; diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js index 78df696..8725408 100644 --- a/src/Components/SignupPage/SignupPage.js +++ b/src/Components/SignupPage/SignupPage.js @@ -213,14 +213,14 @@ const SignupPage = () => { if (isBusy) { return; } - /* + const dataValues = validateUserData(); if (dataValues === null) { return; } saveLeadData(dataValues); -*/ + setShowSelectPlan(!showSelectPlan); }; diff --git a/src/styles/captions.scss b/src/styles/captions.scss new file mode 100644 index 0000000..e6ad870 --- /dev/null +++ b/src/styles/captions.scss @@ -0,0 +1,18 @@ +.florida-court-header { + text-align: center; +} + +.florida-court-header-text { + color: #373737; + font-weight: 500; +} + +.florida-court-header-text2 { + color: #373737; + font-weight: 500; + margin-top: -5px; +} + +.florida-inner { + font-weight: 400; +}