Skip to contentSkip to navigationSkip to topbar
Paste assistant Assistant
Figma
Star

Settings

The Settings page template lets customers edit information and update simple settings.


<Box paddingX="space100" paddingTop="space130" paddingBottom="space160">
  <PageHeader size="default">
    <PageHeaderSetting>
      <Breadcrumb aria-label={useUID()}>
        <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
        <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
        <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
      </Breadcrumb>
    </PageHeaderSetting>
    <PageHeaderDetails>
      <PageHeaderHeading>Billing settings</PageHeaderHeading>
    </PageHeaderDetails>
    <PageHeaderInPageNavigation>
      <InPageNavigation aria-label={useUID()}>
        <InPageNavigationItem href="#">Invoicing</InPageNavigationItem>
        <InPageNavigationItem href="#" currentPage>
          Service address
        </InPageNavigationItem>
        <InPageNavigationItem href="#">Tax information</InPageNavigationItem>
      </InPageNavigation>
    </PageHeaderInPageNavigation>
  </PageHeader>
  <Box>
    <Form maxWidth="size70">
      <Box display="flex" flexDirection="column">
        <Heading as="h2" variant="heading20">
          Service address
        </Heading>
        <Paragraph marginBottom="space0">
          This information will be used for taxation purposes. For US customers, this is your service address. For
          international customers, this is your permanent place of establishment (e.g. head office).
        </Paragraph>
      </Box>
      <FormControl>
        <Label htmlFor={input1}>Country</Label>
        <Input type="text" id={input1} name="input1" />
      </FormControl>
      <FormControl>
        <Label htmlFor={input2}>Address line 1</Label>
        <Input type="text" id={input2} name="input2" />
      </FormControl>
      <FormControl>
        <Label htmlFor={input3}>Address line 2 (optional)</Label>
        <Input type="text" id={input3} name="input3" />
      </FormControl>
      <FormControl>
        <Label htmlFor={input4}>City</Label>
        <Input type="text" id={input4} name="input4" />
      </FormControl>
      <FormControl>
        <Label htmlFor={input5}>State</Label>
        <Input type="text" id={input5} name="input5" />
      </FormControl>
      <FormControl>
        <Label htmlFor={input6}>Zipcode</Label>
        <Input type="text" id={input6} name="input6" />
      </FormControl>
      <FormActions>
        <Button variant="primary">Save changes</Button>
      </FormActions>
    </Form>
  </Box>
</Box>

About Settings

About Settings page anchor

Settings pages let customers edit information and update simple settings.

If a customer is creating an object or the editing process is complex and requires additional guidance or focus, use the create pattern and wizard template instead.

A Settings page can be a standalone page, or you can use a Settings overview page that links to multiple Settings pages.

Required

How to use this template

How to use this template page anchor
Page header page anchor

At the top of the page, add a page heading using the format “[Settings type] settings.” For example, “Workplace settings” or “Source settings.” Optionally, use text under the heading to explain the primary settings on the page.

Heading and Paragraph should have a max width of $size-70.

Like Object details, Settings should also allow a customer to easily scan for the information they’re looking to edit. Group related settings under Headings. Use sentence case for all Headings (“Billing details” not “Billing Details”).

If a group of settings needs additional explanation, use a Paragraph under a single Heading. If a single setting needs additional explanation, use Help Text with its form field.

Use customer research to inform how to order sections on the Settings page.

If there are too many settings to fit on a single page, split related settings into separate pages or Modals, and link to them from a Settings overview page. On a Settings overview page, use Cards to group sections and surface the most relevant information with Description Lists.

Position the page content in the center with a max width of $size-90.

<Box display="flex" width="100%" justifyContent="center">
  <Box paddingTop="space130" paddingBottom="space160" maxWidth="size90">
    <PageHeader>
      <PageHeaderSetting>
        <Breadcrumb aria-label={useUID()}>
          <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
          <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
          <BreadcrumbItem href="#">Breadcrumb</BreadcrumbItem>
        </Breadcrumb>
      </PageHeaderSetting>
      <PageHeaderDetails>
        <PageHeaderHeading>Welcome, Dena</PageHeaderHeading>
        <PageHeaderParagraph>
          View and manage your user settings, security, and preferences here.
        </PageHeaderParagraph>
      </PageHeaderDetails>
    </PageHeader>
    <Box>
      <Grid vertical gutter="space40">
        <Column padding="space0">
          <Grid gutter="space40" equalColumnHeights>
            <Column>
              <Box
                as="article"
                padding="space100"
                borderWidth="borderWidth10"
                borderColor="colorBorderWeaker"
                borderStyle="solid"
                borderRadius="borderRadius30"
                backgroundColor="colorBackgroundBody"
                width="100%"
              >
                <Heading as="h2" variant="heading20">
                  Personal information
                </Heading>
                <DescriptionList>
                  <DescriptionListSet>
                    <DescriptionListTerm>Email address</DescriptionListTerm>
                    <DescriptionListDetails>dena.doe@owl.com</DescriptionListDetails>
                  </DescriptionListSet>
                  <DescriptionListSet>
                    <DescriptionListTerm>Full name</DescriptionListTerm>
                    <DescriptionListDetails>Dena Doe</DescriptionListDetails>
                  </DescriptionListSet>
                  <DescriptionListSet>
                    <DescriptionListTerm>User SID</DescriptionListTerm>
                    <DescriptionListDetails>123454353SDASDFFSDS</DescriptionListDetails>
                  </DescriptionListSet>
                </DescriptionList>
                <Button variant="secondary">
                  <EditIcon decorative />
                  Edit
                </Button>
              </Box>
            </Column>
            <Column>
              <Card padding="space100">
                <Heading as="h2" variant="heading20">
                  Two-factor authentication (2FA)
                </Heading>
                <DescriptionList>
                  <DescriptionListSet>
                    <DescriptionListTerm>Phone number</DescriptionListTerm>
                    <DescriptionListDetails>+1 (123) 123-1234</DescriptionListDetails>
                  </DescriptionListSet>
                  <DescriptionListSet>
                    <DescriptionListTerm>Default 2FA method</DescriptionListTerm>
                    <DescriptionListDetails>Text message (SMS)</DescriptionListDetails>
                  </DescriptionListSet>
                  <DescriptionListSet>
                    <DescriptionListTerm>Alternative 2FA method</DescriptionListTerm>
                    <DescriptionListDetails>Authenticator app</DescriptionListDetails>
                  </DescriptionListSet>
                </DescriptionList>
                <Button variant="secondary">
                  <EditIcon decorative />
                  Edit
                </Button>
              </Card>
            </Column>
          </Grid>
        </Column>
        <Column>
          <Card padding="space100">
            <Box display="flex" flexDirection="row" justifyContent="space-between">
              <Box display="flex" flexDirection="row">
                <LockIcon decorative size="sizeIcon70" color="colorTextIcon" />
                <Heading as="h2" variant="heading20" marginBottom="space0">
                  Password
                </Heading>
              </Box>
              <Button variant="secondary">Reset password</Button>
            </Box>
          </Card>
        </Column>
      </Grid>
    </Box>
  </Box>
</Box>

If all settings on a page have only “on/off” or “yes/no” states, you can use Switches.

However when you’re using a Switch, all settings on that page must use Switches because their interaction result is immediate. Use a Toast to confirm the result. No “Save” Button is needed.

Coming soon

Add the “Paste Patterns & Templates(link takes you to an external page)” library to your file.