Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
fix: improve auth code screen (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron authored Jun 13, 2024
1 parent 7a03f2a commit 875ed2f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions frontend/src/components/AuthCodeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ function AuthCodeForm() {
<form onSubmit={onSubmit} className="flex flex-col items-center w-full">
<div className="grid gap-5">
<TwoColumnLayoutHeader
title="Alby OAuth"
description="Enter your Auth Code to connect to Alby"
title="Connect your Alby Account"
description="A new window will open. Sign in with your Alby Account, copy the Authorization Code, and paste it here."
/>
{!hasRequestedCode && (
<>
<Button onClick={requestAuthCode}>Request Auth Code</Button>
<Button onClick={requestAuthCode}>
Request Authorization Code
</Button>
</>
)}
{hasRequestedCode && (
Expand Down

0 comments on commit 875ed2f

Please sign in to comment.