Skip to content

Commit

Permalink
Merge branch 'main' into task/TUP-733--httponly-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb committed Feb 17, 2025
2 parents c7688d1 + b7941b9 commit 316d518
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions libs/tup-components/src/auth/LoginComponent/LoginComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,35 @@ const LoginError: React.FC<{ status?: number; isError: boolean }> = ({
</div>
);
}
if (status === 452) {
return (
<div className="c-form__errors">
<h4>
<strong>Action Required to Activate Your Account:</strong>
</h4>
<br />
Please follow the link below to the TACC Accounts Portal, then review
and update your account profile information to activate your account. We
will send you an email with a verification link to reactivate your
account after you update it.
<br />
<br />
<div>
<h5>
<strong>
<a
rel="noopener noreferrer"
target="_blank"
href="https://accounts.tacc.utexas.edu/edit_profile"
>
Update Your Account
</a>
</strong>
</h5>
</div>
</div>
);
}
return (
<div className="c-form__errors">
Sorry. Something went wrong while trying to log in. Please try again
Expand Down

0 comments on commit 316d518

Please sign in to comment.