summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/network_configuration/config.html
blob: 07a3dc05d9dc50cb4a405da899e5c264443e8c73 (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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Network Configuration</title>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/event_target.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
<script src="chrome://resources/js/cr/ui/list_single_selection_model.js">
</script>
<script src="chrome://resources/js/cr/ui/list_item.js"></script>
<script src="chrome://resources/js/cr/ui/list.js"></script>
<script src="js/network_config.js"></script>
<script src="js/main_config.js"></script>
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="css/config.css"></link>
</head>
<body>
  <div id="network-config">
    <h3>Configuration</h3>
    <div id="network-properties">
    </div>
  </div>
  <div class="button-strip">
    <button id="save">
      Save
    </button>
    <button id="connect">
      Connect
    </button>
    <button id="disconnect">
      Disconnect
    </button>
  </div>
  <div id="message-area">
  </div>
</body>
</html>