Skip to content
Merged
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
6 changes: 4 additions & 2 deletions apps/tax/pages/tax/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import FormStepsLayout from '@island.is/tax/screens/Layouts/FormStepsLayout'
import StepFive from '@island.is/tax/screens/Tax/steps/StepFive'
import StepFour from '@island.is/tax/screens/Tax/steps/StepFour'
import StepOne from '@island.is/tax/screens/Tax/steps/StepOne'
import StepSeven from '@island.is/tax/screens/Tax/steps/StepSeven'
import StepSix from '@island.is/tax/screens/Tax/steps/StepSix'
import StepThree from '@island.is/tax/screens/Tax/steps/StepThree'
import StepTwo from '@island.is/tax/screens/Tax/steps/StepTwo'

Expand Down Expand Up @@ -48,9 +50,9 @@ const Tax = ({ taxInfo }) => {
case 4:
return <StepFive onForward={onForward} onBackward={onBackward}></StepFive>
case 5:
return <div>Step6</div>
return <StepSix onForward={onForward} onBackward={onBackward}></StepSix>
case 6:
return <div>Step7</div>
return <StepSeven onForward={onForward} onBackward={onBackward}></StepSeven>
default:
break
}
Expand Down
43 changes: 43 additions & 0 deletions apps/tax/screens/Tax/steps/StepSeven.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import {
AlertMessage,
Box,
Button,
Text,
} from '@island.is/island-ui/core'

import Buttons from '../Buttons'

type StepSevenProps = {
onForward: () => void
onBackward: () => void
}

const StepSeven = ({ onForward, onBackward }: StepSevenProps) => {
return (
<Box
background="white"
borderRadius="large"
padding={[3, 3, 10]}
marginY={4}
>
<Text variant="h2" paddingBottom={4}>
Staðfesting
</Text>
<Box paddingBottom={4}>
<AlertMessage title="Þú hefur skilað inn framtali" type="success" />
</Box>
<Text variant="h3" paddingBottom={2}>
Þú getur nálgast álagningarseðil á mínum síðum
</Text>
<Text fontWeight="light" paddingBottom={2}>
Þú getur einnig sótt stafrænt afrit af framtali, fylgiskjölum og
álagningarseðli á mínum síðum. Þar má finna rafrænt afrit af
skattaframtölum fyrir gjaldárin 2006 og síðar. Ef þú skilaðir ekki
framtali er einungis álagningarseðill birtur.
</Text>
<Buttons onBackward={onBackward} onForward={onForward}></Buttons>
</Box>
)
}

export default StepSeven
Loading
Loading