summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/resources/setup_flow.html
blob: 258e2cf7b339831b888a5ece04fddd4a88e5d6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html id='t'>
<head>
<title></title>
<script>
  function showSetupDone() {
    document.getElementById('login').style.display = 'none';
    document.getElementById('done').style.display = 'block';
  }
</script>
</head>
<body style="margin:0; border:0;">
  <iframe id="login" frameborder="0" width="100%" scrolling="no" height="100%"
          src="chrome://syncresources/gaialogin"></iframe>
  <iframe id="done" frameborder="0" width="100%" scrolling="no" height="100%"
          src="chrome://syncresources/setupdone" style="display:none"></iframe>
</body>
</html>