Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: chrome/browser/resources/login_container.html

Issue 6579003: Add in chrome://login-container (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Changes in response to rjkroege's comments Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698