1<html> 2<style> 3body { 4 margin: 0; 5 font-family: arial,sans-serif; 6} 7#message { 8 position: absolute; 9 left: 10px; 10 width: 45%; 11} 12#login { 13 position: absolute; 14 left: 50%; 15} 16#message h1 { 17 font-size: medium; 18} 19#message p { 20 font-size: smaller; 21} 22</style> 23<script> 24function initmessage() { 25 document.getElementById('message').innerHTML = chrome.dialogArguments; 26} 27 28function init() { 29 chrome.send('SigninInit'); 30 initmessage(); 31} 32</script> 33<body onload="init();"> 34<div id="message"></div> 35<iframe id="login" frameborder="0" width="50%" scrolling="no" height="100%" 36 src="chrome://syncresources/gaialogin" tabindex="-1"></iframe> 37</body> 38</html> 39