@axos-web-dev/shared-components 1.0.66 → 1.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Auth/ErrorAlert.js
CHANGED
|
@@ -154,9 +154,9 @@ const ErrorAlert = ({
|
|
|
154
154
|
/* @__PURE__ */ jsx("h2", { className: clsx("header_3", headerForm({ variant })), children: "Let's try that again" }),
|
|
155
155
|
/* @__PURE__ */ jsx("hr", { className: clsx(separator) }),
|
|
156
156
|
/* @__PURE__ */ jsxs("div", { children: [
|
|
157
|
-
/* @__PURE__ */ jsx("p", { children: "The
|
|
157
|
+
/* @__PURE__ */ jsx("p", { children: "The ACE User ID or ACE Company ID you provided isn't recognized." }),
|
|
158
158
|
/* @__PURE__ */ jsxs("p", { children: [
|
|
159
|
-
"Please try entering your
|
|
159
|
+
"Please try entering your ACE User ID and ACE Company ID again or call customer support at",
|
|
160
160
|
" ",
|
|
161
161
|
/* @__PURE__ */ jsx(Hyperlink, { targetUrl: "tel:+8446782722", children: "(844) 678 - 2722" }),
|
|
162
162
|
" ",
|
|
@@ -63,16 +63,16 @@ const SignIn = (props) => {
|
|
|
63
63
|
/* @__PURE__ */ jsx("h2", { className: "header_1", children: headline ?? "Log in" }),
|
|
64
64
|
bodyCopy ?? /* @__PURE__ */ jsxs("div", { className: clsx(body_sign_in), children: [
|
|
65
65
|
/* @__PURE__ */ jsx("p", { children: "Please login to access this resource." }),
|
|
66
|
-
/* @__PURE__ */ jsx("p", { children: "Your
|
|
66
|
+
/* @__PURE__ */ jsx("p", { children: "Your Digital Help credentials were sent via email during the onboarding process." })
|
|
67
67
|
] }),
|
|
68
68
|
/* @__PURE__ */ jsx("div", { className: `${form_input_wrapper} push_up`, children: /* @__PURE__ */ jsx(
|
|
69
69
|
Input,
|
|
70
70
|
{
|
|
71
71
|
id: "username",
|
|
72
72
|
...register("username", { required: true }),
|
|
73
|
-
label: "
|
|
73
|
+
label: "ACE User ID",
|
|
74
74
|
sizes: "medium",
|
|
75
|
-
placeholder: "
|
|
75
|
+
placeholder: "ACE User ID",
|
|
76
76
|
required: true,
|
|
77
77
|
error: !!errors.username,
|
|
78
78
|
helperText: errors?.username?.message,
|
|
@@ -84,9 +84,9 @@ const SignIn = (props) => {
|
|
|
84
84
|
{
|
|
85
85
|
id: "password",
|
|
86
86
|
...register("password", { required: true }),
|
|
87
|
-
label: "
|
|
87
|
+
label: "ACE Company ID",
|
|
88
88
|
sizes: "medium",
|
|
89
|
-
placeholder: "
|
|
89
|
+
placeholder: "ACE Company ID",
|
|
90
90
|
required: true,
|
|
91
91
|
error: !!errors.password,
|
|
92
92
|
helperText: errors?.password?.message,
|