From d2c7f1ca190914962f95312550e2e3a3e72f832a Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Thu, 1 Feb 2024 12:30:08 -0600 Subject: [PATCH] more --- .../Document/captionHeaders/floridaCaption.js | 69 +++++++++++++++++++ src/Components/SignupPage/SignupPage.js | 4 +- 2 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 src/Components/Document/captionHeaders/floridaCaption.js 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 +
+
+
+
+
+
+
+
Edit Document
+
+
+
+ {fetchedCase?.caption ? fetchedCase?.caption : <>}, +
+
+
+
+
Plaintiff(s),
+
+ Index no. {fetchedCase?.caseNumber} +
+
+
+
+
{displayCopy.versusText}
+
Judge: {fetchedCase?.judge}
+
+
+ {fetchedCase?.captionTwo ? fetchedCase?.captionTwo : <>}, +
+
+
+
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); };