Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions apps/frontend/src/components/forms/manufacturerApplicationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -594,22 +594,6 @@ const ManufacturerApplicationForm: React.FC = () => {
</Checkbox.Label>
</Checkbox.Root>
</Field.Root>
<Field.Root required mb="4em">
<Checkbox.Root>
<Checkbox.HiddenInput required />
<Checkbox.Control
border="1px solid"
borderColor="neutral.100"
_checked={{ bg: 'neutral.800' }}
/>
<Checkbox.Label {...fieldHeaderStyles}>
By submitting this form, you agree to receive automated emails
from Securing Safe Food (SSF) Corp. should your food
manufacturer be enrolled in our program.{' '}
<Field.RequiredIndicator color="red" />
</Checkbox.Label>
</Checkbox.Root>
</Field.Root>
<Box display="flex" gap={2} justifyContent="flex-end" mb={6}>
<Button
border="1px solid"
Expand Down
15 changes: 0 additions & 15 deletions apps/frontend/src/components/forms/pantryApplicationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1159,21 +1159,6 @@ const PantryApplicationForm: React.FC = () => {
</Checkbox.Label>
</Checkbox.Root>
</Field.Root>
<Field.Root required mb="4em">
<Checkbox.Root>
<Checkbox.HiddenInput required />
<Checkbox.Control
border="1px solid"
borderColor="neutral.100"
_checked={{ bg: 'neutral.800' }}
/>
<Checkbox.Label {...fieldHeaderStyles}>
By submitting this form, you agree to receive automated emails
from Securing Safe Food (SSF) Corp. should your pantry be
enrolled in our program. <Field.RequiredIndicator color="red" />
</Checkbox.Label>
</Checkbox.Root>
</Field.Root>
<Box display="flex" gap={2} justifyContent="flex-end" mb={6}>
<Button
border="1px solid"
Expand Down
13 changes: 10 additions & 3 deletions apps/frontend/src/containers/loginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -307,11 +307,18 @@ const LoginPage: React.FC = () => {

{step === 'login' && (
<>
<Text textStyle="p" color="neutral.800" textAlign="center" mt={6}>
<Text
textStyle="p2"
color="neutral.900"
fontWeight={500}
textAlign="center"
mt={6}
>
Don't have an account?{' '}
<Link
textStyle="p"
color="neutral.800"
textStyle="p2"
color="neutral.900"
fontWeight={500}
onClick={() => navigate(ROUTES.SIGNUP)}
variant="underline"
textDecorationColor="neutral.300"
Expand Down
13 changes: 10 additions & 3 deletions apps/frontend/src/containers/signupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,18 @@ const SignupPage: React.FC = () => {
Food Manufacturer (Donor) Partner
</Button>
</VStack>
<Text textStyle="p" color="neutral.800" textAlign="center" mt={24}>
<Text
textStyle="p2"
color="neutral.900"
fontWeight={500}
textAlign="center"
mt={24}
>
Already have an account?{' '}
<Link
textStyle="p"
color="neutral.800"
textStyle="p2"
color="neutral.900"
fontWeight={500}
onClick={() => navigate(ROUTES.LOGIN)}
variant="underline"
textDecorationColor="neutral.300"
Expand Down
Loading