summaryrefslogtreecommitdiffstats
path: root/chrome/browser/remoting/resources/remoting_setup_done.html
blob: 6d54e6265781895498b14c08b26aa617fb36baac (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
<html i18n-values="dir:textdirection;">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="remoting_setup_flow.css" />
<script>
  function setShowFirstTimeSetupSummary() {
    document.getElementById("summary").innerHTML =
      templateData['firsttimesetupsummary'];
  }
  function setMessage(msg) {
    document.getElementById('msgContent').innerHTML = msg;
  }
  function onPageShown() {
    document.getElementById("close").focus();
  }
</script>
</head>
<body i18n-values=".style.fontFamily:fontfamily">
  <div class="remoting-header" i18n-content="success"></div>
  <div class="remoting-success-image">
    <img src="../../sync/resources/success-large.png" />
  </div>
  <div id="msgContent"></div>
  <div class="remoting-footer">
    <input id="close" type="submit" i18n-values="value:okay"
           onclick='chrome.send("DialogClose", [""])' />
  </div>
</body>
</html>