Chromium Code Reviews| Index: chrome/browser/resources/login_container.html |
| diff --git a/chrome/browser/resources/login_container.html b/chrome/browser/resources/login_container.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3158f9ef826c83702def7c545e7cd9181bbd58fb |
| --- /dev/null |
| +++ b/chrome/browser/resources/login_container.html |
| @@ -0,0 +1,23 @@ |
| +<!DOCTYPE html> |
| +<html> |
|
oshima
2011/02/28 18:38:07
This is still place holder right?
rharrison
2011/02/28 19:28:24
Yes, this page and the associated LoginContainerUI
|
| +<head> |
| +<link rel="stylesheet" href="login_ui.css" > |
| +</head> |
| + |
| +<body> |
| + <div id="sign-in-div"> |
| + <div id="sign-in-body"> |
| + <button type="button" id="open-login-screen-button" |
| + onclick="callOpenLoginScreen();"> |
| + Open Login Screen |
| + </button> |
| + </div> |
| + </div> |
| +</body> |
| + |
| +<script> |
| +function callOpenLoginScreen() { |
| + chrome.send('OpenLoginScreen', []); |
| +} |
| +</script> |
| +</html> |