summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/choose_mobile_network.html
blob: 0ae0abf2343d7aff9a1a3437a87670bf3df3ad5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html i18n-values="dir:textdirection;lang:language">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
<link rel="stylesheet" href="chrome://resources/css/widgets.css">
<link rel="stylesheet" href="mobile_dialogs.css">
<link rel="stylesheet" href="choose_mobile_network.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://choose-mobile-network/strings.js"></script>
<script src="chrome://choose-mobile-network/choose_mobile_network.js"></script>
</head>
<body>
  <div id="container" class="container">
    <div id="choose-mobile-network" class="dialog">
      <h1 i18n-content="chooseNetworkTitle"></h1>
      <div id="scanning" class="content-area">
        <div id="spinner" class="spinner"></div>
        <div class="scanning-msg" i18n-content="scanningMsgLine1"></div>
        <div class="scanning-msg" i18n-content="scanningMsgLine2"></div>
      </div>
      <div id="choosing" class="content-area" hidden>
      </div>
      <div id="no-mobile-networks" class="content-area" hidden>
        <div class="scanning-msg" i18n-content="noMobileNetworks"></div>
      </div>
      <div class="action-area">
        <div class="action-area-right">
          <div class="button-strip">
            <button id="cancel" i18n-content="cancel"></button>
            <button id="connect" i18n-content="connect" ></button>
          </div>
        </div>
      </div>
    </div>
  </div>
  <script src="chrome://resources/js/i18n_template.js"></script>
</body>
</html>