mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-04 16:29:44 +00:00
make token sensitive
This commit is contained in:
parent
6d65e75f6a
commit
96d64c74d9
2 changed files with 7 additions and 7 deletions
|
|
@ -71,7 +71,7 @@ export function OptionalDropdown() {
|
|||
1. Go to <MwLink to="https://febbox.com">
|
||||
febbox.com
|
||||
</MwLink>{" "}
|
||||
and log in with Google
|
||||
and log in with Google (use a fresh account!)
|
||||
<br />
|
||||
2. Open DevTools or inspect the page
|
||||
<br />
|
||||
|
|
@ -82,8 +82,8 @@ export function OptionalDropdown() {
|
|||
5. Close the tab, but do NOT logout!
|
||||
</Trans>
|
||||
</p>
|
||||
<p className="text-xs mt-2">
|
||||
(This is not a sensitive login cookie or account token)
|
||||
<p className="text-type-danger mt-2">
|
||||
(Do not share this token!)
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
|
@ -97,6 +97,7 @@ export function OptionalDropdown() {
|
|||
}}
|
||||
value={febboxToken ?? ""}
|
||||
placeholder="eyABCdE..."
|
||||
passwordToggleable
|
||||
/>
|
||||
</>
|
||||
) : null}
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ function FebboxTokenEdit({ febboxToken, setFebboxToken }: FebboxTokenProps) {
|
|||
To get your UI token:
|
||||
<br />
|
||||
1. Go to <MwLink to="https://febbox.com">febbox.com</MwLink> and
|
||||
log in with Google
|
||||
log in with Google (use a fresh account!)
|
||||
<br />
|
||||
2. Open DevTools or inspect the page
|
||||
<br />
|
||||
|
|
@ -218,9 +218,7 @@ function FebboxTokenEdit({ febboxToken, setFebboxToken }: FebboxTokenProps) {
|
|||
5. Close the tab, but do NOT logout!
|
||||
</Trans>
|
||||
</p>
|
||||
<p className="text-xs mt-2">
|
||||
(This is not a sensitive login cookie or account token)
|
||||
</p>
|
||||
<p className="text-type-danger mt-2">(Do not share this token!)</p>
|
||||
</div>
|
||||
|
||||
<Divider marginClass="my-6 px-8 box-content -mx-8" />
|
||||
|
|
@ -233,6 +231,7 @@ function FebboxTokenEdit({ febboxToken, setFebboxToken }: FebboxTokenProps) {
|
|||
}}
|
||||
value={febboxToken ?? ""}
|
||||
placeholder="eyABCdE..."
|
||||
passwordToggleable
|
||||
/>
|
||||
</>
|
||||
) : null}
|
||||
|
|
|
|||
Loading…
Reference in a new issue