Skip to content

Commit

Permalink
bug/TUP-692 TUP Login Form Error Message Unstyled (#430)
Browse files Browse the repository at this point in the history
* add error styling to tup login

* formatting error
  • Loading branch information
R-Tomas-Gonzalez authored Feb 22, 2024
1 parent eb0dfda commit 1e15700
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,14 @@ const LoginComponent: React.FC<LoginProps> = ({ className }) => {
const status = (error as AxiosError)?.response?.status;

return (
<div className={`c-form c-form--login ${styles.root} ${className}`}>
<div className={`c-form--login ${styles.root} ${className}`}>
<h3 className="c-form__title">
<img src={blackLogo} alt="TACC Logo" />
<span>Log In</span>
</h3>
<p className="c-form__desc">to continue to the TACC User Portal</p>
<Formik initialValues={initialValues} onSubmit={onSubmit}>
<Form>
<Form className="c-form">
<LoginError status={status} isError={isError} />
<FormikInput
name="username"
Expand Down

0 comments on commit 1e15700

Please sign in to comment.