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

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: Removed some garbage that ended up in the CL and fixed a couple of headers that moved 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
« no previous file with comments | « chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
+<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>
« no previous file with comments | « chrome/browser/chromeos/webui/login/mock_login_ui_helpers.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698