Skip navigation
github repo

Completed steps

Many interactive tools used on HealthCare.gov present data as it is entered by the user. The data builds upon itself as the user completes steps along a process. In many cases this content can be edited after it has been entered.

Completed steps: Tools

Demographic information entered by a user stacks as the user completes steps. A Glyphicon checkmark is displayed to indicate that a step has been successfully completed.

Example & Code

  1. ZIP Code

    60001 (McHenry County, IL)
  2. Monthly Household Income

    $50,000
  3. Household Members

    Age Parent Pregnant
    29 yes
    34 yes yes
<ol class="summary">
            <li class="row">
              <div class="col-sm-1 hidden-xs glyphicon glyphicon-ok" aria-label="step complete"></div>
              <div class="col-xs-9 col-sm-9" id="zip-code" aria-live="assertive" aria-relevant="additions removals">
                <h2 class="h3-style"><abbr>ZIP</abbr> Code </h2><span class="zip done">60001</span> <span class="county done">(McHenry County, IL)</span>
              </div>
              <div class="col-xs-3 col-sm-2">
                <a href="#" class="btn btn-xs btn-edit pull-right zip-edit" role="button" target="_self">
                  <span>Edit <span class="sr-only">your <abbr>ZIP</abbr> Code</span></span>
                </a>
              </div>
            </li>
            <li class="row income" style="display: list-item;">
              <div class="col-sm-1 hidden-xs glyphicon glyphicon-ok" aria-label="step complete"></div>
              <div class="col-xs-9 col-sm-9" id="income" aria-live="assertive" aria-relevant="additions removals">
                <h2 class="h3-style">Monthly Household Income</h2><span class="income done" style="display: inline;">$50,000</span>
              </div>
              <div class="col-xs-3 col-sm-2">
                <a href="#" class="btn btn-xs btn-edit pull-right income-edit" role="button" target="_self">
                  <span>Edit <span class="sr-only">your estimated monthly household income</span></span>
                </a>
              </div>
            </li>
            <li class="row household" style="display: list-item;">
              <div class="col-sm-1 hidden-xs glyphicon glyphicon-ok" aria-label="step complete"></div>
              <div class="col-xs-9 col-sm-9" id="zip-code" aria-live="assertive" aria-relevant="additions removals">
                <h2 class="h3-style">Household Members</h2>
                <table class="household-members table" summary="Household Members"><tr><th scope="col" class="col-xs-3 col-sm-3">
                                    <strong>Age</strong>
                                </th><th scope="col" class="col-xs-4 col-sm-3">
                                    <strong>Parent</strong>
                                </th><th scope="col" class="col-xs-4 col-sm-3">
                                    <strong>Pregnant</strong>
                                </th></tr><tr><td class="col-xs-3 col-sm-3">
                                    <span class="summary-age">29</span>
                                </td><td class="col-xs-4 col-sm-3">
                                    <span class="summary-parent">yes</span>
                                </td><td class="col-xs-4 col-sm-3">
                                    <span class="summary-pregnant"></span>
                                </td></tr><tr><td class="col-xs-3 col-sm-3">
                                    <span class="summary-age">34</span>
                                </td><td class="col-xs-4 col-sm-3">
                                    <span class="summary-parent">yes</span>
                                </td><td class="col-xs-4 col-sm-3">
                                    <span class="summary-pregnant">yes</span>
                                </td></tr></table>
              </div>
              <div class="col-xs-3 col-sm-2">
                <a href="#" class="btn btn-xs btn-edit pull-right household-edit" role="button" target="_self">
                  <span>Edit <span class="sr-only">household members</span></span>
                </a>
              </div>
            </li>
          </ol>