diff --git a/apps/OpenSign/src/components/BulkSendUi.js b/apps/OpenSign/src/components/BulkSendUi.js index 6e4aa5e76..212f110e6 100644 --- a/apps/OpenSign/src/components/BulkSendUi.js +++ b/apps/OpenSign/src/components/BulkSendUi.js @@ -170,14 +170,8 @@ const BulkSendUi = (props) => { return ( <> {isSubmit && ( -
-
+
+
)} {props.Placeholders?.length > 0 ? ( @@ -185,14 +179,14 @@ const BulkSendUi = (props) => { <> {props.Placeholders?.some((x) => !x.signerObjId) ? (
-
+
{forms?.map((form, index) => (
{form?.fields?.map((field, fieldIndex) => ( -
+
{
) : props.otpLoader ? ( -
-
+
+
) : ( -
-

Please verify your email !

-
+
+

Please verify your email !

)}
-
+ ); } diff --git a/apps/OpenSign/src/components/shared/fields/SuggestionInput.js b/apps/OpenSign/src/components/shared/fields/SuggestionInput.js index 62ccab508..5c27adc31 100644 --- a/apps/OpenSign/src/components/shared/fields/SuggestionInput.js +++ b/apps/OpenSign/src/components/shared/fields/SuggestionInput.js @@ -61,24 +61,24 @@ const SuggestionInput = (props) => { } }; return ( -
+
{showSuggestions && (
    {suggestions.map((suggestion, index) => (
  • handleSuggestionClick(suggestion)} > {suggestion.Email} diff --git a/apps/OpenSign/src/pages/GenerateToken.js b/apps/OpenSign/src/pages/GenerateToken.js index 54a140495..c2ed62a98 100644 --- a/apps/OpenSign/src/pages/GenerateToken.js +++ b/apps/OpenSign/src/pages/GenerateToken.js @@ -4,7 +4,7 @@ import axios from "axios"; import { useNavigate } from "react-router-dom"; import Alert from "../primitives/Alert"; import ModalUi from "../primitives/ModalUi"; -import { isEnableSubscription, rejectBtn, submitBtn } from "../constant/const"; +import { isEnableSubscription } from "../constant/const"; import { checkIsSubscribed, copytoData, openInNewTab } from "../constant/Utils"; import PremiumAlertHeader from "../primitives/PremiumAlertHeader"; import Tooltip from "../primitives/Tooltip"; @@ -219,7 +219,7 @@ function GenerateToken() { handleClose={handleModal} >
    -
    +
    Are you sure you want to regenerate token it will expire old token?
    @@ -227,11 +227,14 @@ function GenerateToken() {
    -
    diff --git a/apps/OpenSign/src/pages/UserProfile.js b/apps/OpenSign/src/pages/UserProfile.js index 6bf4869de..3690bd551 100644 --- a/apps/OpenSign/src/pages/UserProfile.js +++ b/apps/OpenSign/src/pages/UserProfile.js @@ -12,7 +12,7 @@ import sanitizeFileName from "../primitives/sanitizeFileName"; import axios from "axios"; import PremiumAlertHeader from "../primitives/PremiumAlertHeader"; import Tooltip from "../primitives/Tooltip"; -import { isEnableSubscription, rejectBtn, submitBtn } from "../constant/const"; +import { isEnableSubscription } from "../constant/const"; import { checkIsSubscribed, handleSendOTP } from "../constant/Utils"; import Upgrade from "../primitives/Upgrade"; import ModalUi from "../primitives/ModalUi"; @@ -549,25 +549,24 @@ function UserProfile() {
    ) : (
    handleVerifyEmail(e)}> -
    +
    setOtp(e.target.value)} />
    -
    -
    -
    )} -
    +
    {/* {isCelebration && (
    @@ -945,7 +947,7 @@ const ReportTable = (props) => { navigate("/form/template")} - className="fa-solid fa-square-plus text-sky-400 text-[25px]" + className="fa-solid fa-square-plus text-accent text-[25px]" > )} {props.form && ( @@ -953,7 +955,7 @@ const ReportTable = (props) => { className="cursor-pointer" onClick={() => handleContactFormModal()} > - +
    )}
    @@ -1048,7 +1050,7 @@ const ReportTable = (props) => { @@ -1228,10 +1230,11 @@ const ReportTable = (props) => { )} */} -
    +
    {props.actions?.length > 0 && props.actions.map((act, index) => ( -
)} - +
))}
{isViewShare[item.objectId] && ( diff --git a/apps/OpenSign/src/primitives/ModalUi.js b/apps/OpenSign/src/primitives/ModalUi.js index 24028cd0c..348557c5f 100644 --- a/apps/OpenSign/src/primitives/ModalUi.js +++ b/apps/OpenSign/src/primitives/ModalUi.js @@ -13,30 +13,32 @@ const ModalUi = ({ reduceWidth, showHeaderMessage }) => { + const headerColor = headColor ? `text-${headColor}` : "text-base-content"; return ( <> {isOpen && ( -
+
{showHeader && ( -
-
{title}
+ <> +

+ {title} +

{showClose && ( -
handleClose && handleClose()} > - × -
+ ✕ + )} -
+ )} {!isEnableSubscription && showHeaderMessage && ( {children}
-
+ )} ); diff --git a/apps/OpenSign/src/primitives/PdfDeclineModal.js b/apps/OpenSign/src/primitives/PdfDeclineModal.js index ee8507762..7030dc5f8 100644 --- a/apps/OpenSign/src/primitives/PdfDeclineModal.js +++ b/apps/OpenSign/src/primitives/PdfDeclineModal.js @@ -1,6 +1,5 @@ import React from "react"; import "../styles/signature.css"; -import { rejectBtn } from "../constant/const"; function CustomModal({ show, @@ -12,12 +11,12 @@ function CustomModal({ }) { return ( show && ( -
-
-
+ +
+

{headMsg && headMsg} -

-
+ +

{bodyMssg && bodyMssg}

{footerMessage && ( @@ -25,8 +24,7 @@ function CustomModal({
-
+
) ); }