@axos-web-dev/shared-components 1.0.72-patch.1 → 1.0.72-patch.2
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,15 @@ 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 ACE User ID or ACE Company ID you provided isn't recognized." }),
|
|
158
157
|
/* @__PURE__ */ jsxs("p", { children: [
|
|
159
|
-
"
|
|
158
|
+
"The ",
|
|
159
|
+
/* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
|
|
160
|
+
" credentials you provided isn't recognized."
|
|
161
|
+
] }),
|
|
162
|
+
/* @__PURE__ */ jsxs("p", { children: [
|
|
163
|
+
"Please try entering your ",
|
|
164
|
+
/* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
|
|
165
|
+
" credentials again or call customer support at",
|
|
160
166
|
" ",
|
|
161
167
|
/* @__PURE__ */ jsx(Hyperlink, { targetUrl: "tel:+8446782722", children: "(844) 678 - 2722" }),
|
|
162
168
|
" ",
|
|
@@ -63,16 +63,20 @@ 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__ */
|
|
66
|
+
/* @__PURE__ */ jsxs("p", { children: [
|
|
67
|
+
"Your ",
|
|
68
|
+
/* @__PURE__ */ jsx("b", { children: "Axos Resource Center" }),
|
|
69
|
+
" credentials were sent via email during the onboarding process."
|
|
70
|
+
] })
|
|
67
71
|
] }),
|
|
68
72
|
/* @__PURE__ */ jsx("div", { className: `${form_input_wrapper} push_up`, children: /* @__PURE__ */ jsx(
|
|
69
73
|
Input,
|
|
70
74
|
{
|
|
71
75
|
id: "username",
|
|
72
76
|
...register("username", { required: true }),
|
|
73
|
-
label: "
|
|
77
|
+
label: "Username",
|
|
74
78
|
sizes: "medium",
|
|
75
|
-
placeholder: "
|
|
79
|
+
placeholder: "Username",
|
|
76
80
|
required: true,
|
|
77
81
|
error: !!errors.username,
|
|
78
82
|
helperText: errors?.username?.message,
|
|
@@ -84,9 +88,9 @@ const SignIn = (props) => {
|
|
|
84
88
|
{
|
|
85
89
|
id: "password",
|
|
86
90
|
...register("password", { required: true }),
|
|
87
|
-
label: "
|
|
91
|
+
label: "Password",
|
|
88
92
|
sizes: "medium",
|
|
89
|
-
placeholder: "
|
|
93
|
+
placeholder: "Password",
|
|
90
94
|
required: true,
|
|
91
95
|
error: !!errors.password,
|
|
92
96
|
helperText: errors?.password?.message,
|
package/package.json
CHANGED