summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/resources/setup_done.html
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/resources/setup_done.html')
-rw-r--r--chrome/browser/sync/resources/setup_done.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/chrome/browser/sync/resources/setup_done.html b/chrome/browser/sync/resources/setup_done.html
new file mode 100644
index 0000000..4e5cf34
--- /dev/null
+++ b/chrome/browser/sync/resources/setup_done.html
@@ -0,0 +1,62 @@
+<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;
+ }
+ function onPageShown() {
+ document.getElementById("close").focus();
+ }
+</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>