@rpcbase/client 0.85.0 → 0.87.0
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.
|
@@ -22,9 +22,9 @@ const SetNewPassword = ({name, logo}) => {
|
|
|
22
22
|
const user_id = useSearchParam("uid")
|
|
23
23
|
const token = useSearchParam("token")
|
|
24
24
|
|
|
25
|
-
useEffect(() => {
|
|
26
|
-
|
|
27
|
-
}, [user_id, token])
|
|
25
|
+
// useEffect(() => {
|
|
26
|
+
// console.log("TOKEN", user_id, token)
|
|
27
|
+
// }, [user_id, token])
|
|
28
28
|
|
|
29
29
|
const onSubmit = async(e) => {
|
|
30
30
|
e.preventDefault()
|
|
@@ -67,7 +67,6 @@ const SetNewPassword = ({name, logo}) => {
|
|
|
67
67
|
<div>
|
|
68
68
|
<div className="d-flex align-items-center justify-content-center">
|
|
69
69
|
{logo}
|
|
70
|
-
<span className="ms-1 fs-4">{name}</span>
|
|
71
70
|
</div>
|
|
72
71
|
|
|
73
72
|
<hr />
|
package/auth/SignIn/index.js
CHANGED
package/auth/SignOut/index.js
CHANGED
|
@@ -17,6 +17,7 @@ import "./sign-out.scss"
|
|
|
17
17
|
// TODO: clear cache + db
|
|
18
18
|
|
|
19
19
|
const SignOut = ({
|
|
20
|
+
logo,
|
|
20
21
|
name,
|
|
21
22
|
onSuccess = () => null
|
|
22
23
|
}) => {
|
|
@@ -68,7 +69,14 @@ const SignOut = ({
|
|
|
68
69
|
</Alert>
|
|
69
70
|
)}
|
|
70
71
|
|
|
71
|
-
{accounts ? (
|
|
72
|
+
{accounts ? (
|
|
73
|
+
<div className="form-signout text-center px-4 py-4 shadow-lg">
|
|
74
|
+
|
|
75
|
+
<div className="d-flex align-items-center justify-content-center">
|
|
76
|
+
{logo}
|
|
77
|
+
</div>
|
|
78
|
+
|
|
79
|
+
<hr />
|
|
72
80
|
|
|
73
81
|
<h1 className="h4 mt-3 mb-3 fw-normal">Sign Out</h1>
|
|
74
82
|
|
package/auth/SignUp/index.js
CHANGED