1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

ash / webui / diagnostics_ui / resources / ethernet_info.html [blame]

<style include="diagnostics-shared">
  :host {
    --divider-horizontal-height: 100%;
  }
</style>
<div id="ethernetInfoContainer" class="horizontal-data-point-container">
  <div class="data-point-container">
    <data-point id="ipAddress" header="[[i18n('networkIpAddressLabel')]]"
        value="[[ipAddress]]"
        orientation="horizontal">
    </data-point>
  </div>
  <div class="divider-horizontal"></div>
  <div class="data-point-container">
    <data-point id="authentication"
        header="[[i18n('networkAuthenticationLabel')]]"
        value="[[authentication]]"
        orientation="horizontal">
    </data-point>
  </div>
</div>