summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/resources/setup_done.html
blob: 897f191f82786263a4bd9098ecc11cd612e4c769 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<html i18n-values="dir:textdirection;">
<head>
<title></title>
<style type="text/css">
body,td,div,p,a,font,span {
   font-family: arial,sans-serif;
 }
body {
   bgcolor:"#ffffff"
 } 
.gaia.le.button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: smaller;
}
.endaligned {
  text-align: right;
  align: right;
}
html[dir='rtl'] .endaligned {
  text-align: left;
  align: left;
}
</style>
<script>
  function setShowFirstTimeSetupSummary() {
    document.getElementById("summary").innerHTML =
        "<p><font size='-1'>" + templateData['firsttimesetupsummary']
        + "</font></p>";
  }
  function setSyncedToUser(synced_to) {
    document.getElementById('user').innerHTML = synced_to;
  }
</script>
<body  bgcolor="#ffffff" vlink="#666666
       i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"
       style="margin: 10px">
<table height="100%" width="100%" margin="0" cellpadding="0">
  <tr valign="top">
  <td>
    <p><font size="-1"><b><span i18n-content="success"></span></b></font></p>
    <div align="center">
      <img src="success-large.png" />
    </div>
    <br />
    <p><font size="-1"><span id="user"></span></font></p>
    <div id="summary">
      <p><font size="-1"><span i18n-content="setupsummary"></span></font></p>
    </div>
  </td>
  </tr>
  <tr valign="bottom">
    <td class="endaligned">
      <input id="close" type="submit" i18n-values="value:okay" style="width:85"
             onclick='chrome.send("DialogClose", [""])' />
    </td>
  </tr>
</table>
</body>
</html>