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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <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
3 <head>
4 <link rel="stylesheet" href="login_ui.css" >
5 </head>
6
7 <body>
8 <div id="sign-in-div">
9 <div id="sign-in-body">
10 <button type="button" id="open-login-screen-button"
11 onclick="callOpenLoginScreen();">
12 Open Login Screen
13 </button>
14 </div>
15 </div>
16 </body>
17
18 <script>
19 function callOpenLoginScreen() {
20 chrome.send('OpenLoginScreen', []);
21 }
22 </script>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698