Skip to content

Commit

Permalink
Update account page text
Browse files Browse the repository at this point in the history
  • Loading branch information
bjarneo committed Jun 22, 2021
1 parent 1b7973f commit 84fc1f8
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/client/routes/account/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,24 @@ const Account = () => {
<>
<Wrapper>
<h1>Account</h1>
<Info align="left">Hi, {user.username}</Info>
<br />
<Info align="left">
<strong>Basic auth:</strong>
Hi, <strong>{user.username}</strong>
</Info>
<Info align="left">
This page does not really give you much. Basically just basic auth for the API.
Which still does not give you anything extra than using the API without basic
auth. However, I would suggest you to use basic auth, because restrictions are
coming.
</Info>

<Info align="left">User</Info>
<Info align="left">
<strong>User</strong>
</Info>
<Input type="text" placeholder="key" value={user.username} readonly />

<Info align="left">Token</Info>
<Info align="left">
<strong>Token</strong>
</Info>
<Input type="text" placeholder="key" value={user.basicAuthToken} readonly />

<Info align="left">
Expand Down

0 comments on commit 84fc1f8

Please sign in to comment.