1<html i18n-values="dir:textdirection;">
2<head>
3<title></title>
4<style type="text/css">
5body {
6  background: #FFFFFF;
7  font-size: 11pt;
8  line-height: 1.5em;
9  margin: 10px 15px;
10  -webkit-user-select: none;
11}
12.sync-header {
13  font-size: 1.2em;
14  font-weight: bold;
15}
16.sync-success-image {
17  text-align: center;
18  margin: 20px;
19}
20#user {
21  font-weight: bold;
22}
23.sync-footer {
24  position: fixed;
25  right: 0px;
26  bottom: 0px;
27  margin-right: 10px;
28  margin-bottom: 10px;
29}
30html[dir='rtl'] .sync-footer {
31  text-align: left;
32  left: 0px;
33  bottom: 0px;
34  margin-left: 20px;
35}
36input[type='submit'] {
37  min-width: 87px;
38  min-height: 26px;
39}
40html[os='mac'] input[type='submit'] {
41  font-size: 12pt;
42}
43
44</style>
45<script>
46  function setShowFirstTimeSetupSummary() {
47    // TODO(hclam): Show the information for the first time setup.
48  }
49  function setSyncedToUser(synced_to) {
50    document.getElementById('user').innerHTML = synced_to;
51  }
52  function onPageShown() {
53    document.getElementById("close").focus();
54  }
55</script>
56</head>
57<body i18n-values=".style.fontFamily:fontfamily">
58  <div class="sync-header" i18n-content="success"></div>
59  <div class="sync-success-image">
60    <img src="success-large.png" />
61  </div>
62  <div id="user"></div>
63  <div id="summary" i18n-content="setupsummary"></div>
64  <div class="sync-footer">
65    <input id="close" type="submit" i18n-values="value:okay"
66           onclick='chrome.send("DialogClose", [""])' />
67  </div>
68</body>
69</html>
70