diff --git a/src/Components/Document/captionHeaders/floridaCaption.js b/src/Components/Document/captionHeaders/floridaCaption.js
new file mode 100644
index 0000000..321087b
--- /dev/null
+++ b/src/Components/Document/captionHeaders/floridaCaption.js
@@ -0,0 +1,69 @@
+import { useState } from "react";
+import Scrollbutton from "react-bootstrap/Button";
+import { ArrowUp, ArrowDown } from "react-bootstrap-icons";
+
+const FloridaCaption = (props) => {
+ const { fetchedCase, displayCopy, onScrollClick } = props;
+
+ return (
+ <>
+
+
+
+
{fetchedCase?.jurisdiction}
+
{fetchedCase?.venue}
+
+
+ -----------------------------------------------------------------------X
+
+
+
+
+
+
+
+
+
+ {fetchedCase?.caption ? fetchedCase?.caption : <>>},
+
+
+
+
+
Plaintiff(s),
+
+ Index no. {fetchedCase?.caseNumber}
+
+
+
+
+
{displayCopy.versusText}
+
Judge: {fetchedCase?.judge}
+
+
+ {fetchedCase?.captionTwo ? fetchedCase?.captionTwo : <>>},
+
+
+
+
+ ----------------------------------------------------------------------------/
+
+
+
+
+
+ >
+ );
+};
+
+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);
};