-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dashboard update; initialize rome.tools
- Loading branch information
Showing
18 changed files
with
47 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ export default function ChangeEmailForm(): JSX.Element { | |
loggedInUser.email ? loggedInUser.email : '[email protected]' | ||
} | ||
autoComplete="email" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:border-orange-500 focus:outline-none focus:ring-orange-500 | ||
dark:border-neutral-800 sm:text-sm" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ export default function LoginForm({ loginError, setLoginError }: LoginFormProps) | |
type="email" | ||
placeholder="[email protected]" | ||
autoComplete="email" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -113,7 +113,7 @@ export default function LoginForm({ loginError, setLoginError }: LoginFormProps) | |
type="password" | ||
placeholder="••••••••••••••••" | ||
autoComplete="current-password" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -146,7 +146,7 @@ export default function LoginForm({ loginError, setLoginError }: LoginFormProps) | |
</div> | ||
|
||
<div className="flex w-full justify-center"> | ||
<PrimaryButton isSubmitting={isSubmitting} wFull> | ||
<PrimaryButton isSubmitting={isSubmitting} wFull={true}> | ||
<span className="w-full"> | ||
{isSubmitting ? 'Signing In...' : 'Sign In'} <span>✨</span> | ||
</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,7 +108,7 @@ export default function PasswordResetForm(): JSX.Element { | |
placeholder="••••••••••••••••" | ||
autoComplete="current-password" | ||
aria-describedby="password-description" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -136,7 +136,7 @@ export default function PasswordResetForm(): JSX.Element { | |
placeholder="••••••••••••••••" | ||
autoComplete="current-password" | ||
aria-describedby="password-description" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -247,7 +247,7 @@ export function ForgotPasswordForm(): JSX.Element { | |
type="email" | ||
placeholder="[email protected]" | ||
autoComplete="email" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,7 +124,7 @@ export default function SignupForm({ | |
type="text" | ||
placeholder="John" | ||
autoComplete="First Name" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -158,7 +158,7 @@ export default function SignupForm({ | |
type="lastName" | ||
placeholder="Doe" | ||
autoComplete="Last Name" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -192,7 +192,7 @@ export default function SignupForm({ | |
type="email" | ||
placeholder="[email protected]" | ||
autoComplete="email" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -227,7 +227,7 @@ export default function SignupForm({ | |
placeholder="••••••••••••••••" | ||
autoComplete="current-password" | ||
aria-describedby="password-description" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -273,7 +273,7 @@ export default function SignupForm({ | |
type="password" | ||
placeholder="••••••••••••••••" | ||
autoComplete="current-password" | ||
required | ||
required={true} | ||
className="dark:bg-darkBG mt-1 block w-full rounded-md border | ||
border-neutral-300 py-2 px-3 shadow-sm focus:outline-none dark:border-neutral-800 sm:text-sm" | ||
/> | ||
|
@@ -297,7 +297,7 @@ export default function SignupForm({ | |
<div> | ||
{!signedUp ? ( | ||
<div className="flex justify-center"> | ||
<PrimaryButton isSubmitting={isSubmitting} wFull> | ||
<PrimaryButton isSubmitting={isSubmitting} wFull={true}> | ||
<span className="text-lg font-bold"> | ||
{isSubmitting ? 'Signing up...' : 'Sign Up'}{' '} | ||
<span className="text-xs">✨</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters