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

Unified Diff: chrome/browser/resources/chromeos/login/user_pod_template.html

Issue 11308081: cros: Account picker UI for public account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for comments in #3 Created 8 years 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/chromeos/login/user_pod_template.html
diff --git a/chrome/browser/resources/chromeos/login/user_pod_template.html b/chrome/browser/resources/chromeos/login/user_pod_template.html
index ff4b0a680b1f10c72bbbe912f8b653c023ce64c9..2b33f2b2ef277da92d5dd16d598222648d40ae5e 100644
--- a/chrome/browser/resources/chromeos/login/user_pod_template.html
+++ b/chrome/browser/resources/chromeos/login/user_pod_template.html
@@ -1,14 +1,28 @@
-<!--
-If you change this template, please update UserPod element properties
-defined in user_pod_row.js.
--->
-<div id="user-pod-template" class="pod" hidden>
- <div class="signed-in-indicator" i18n-content="signedIn" hidden></div>
- <img class="user-image" alt="">
- <div class="name"></div>
- <input type="password" i18n-values="placeholder:passwordHint">
- <img class="capslock-hint" src="chrome://theme/IDR_LOGIN_PASSWORD_CAPS_LOCK"
- alt="">
- <button class="signin-button" i18n-content="signinButton"></button>
- <button class="custom-appearance remove-user-button" hidden></button>
+<div id="user-pod-template" class="pod need-password" hidden>
+ <div class="main-pane">
+ <div class="signed-in-indicator" i18n-content="signedIn" hidden></div>
+ <img class="user-image" alt="">
+ <div class="name"></div>
+ <input type="password" class="password"
+ i18n-values="placeholder:passwordHint">
+ <img class="capslock-hint"
+ src="chrome://theme/IDR_LOGIN_PASSWORD_CAPS_LOCK" alt="">
+ <button class="signin-button" i18n-content="signinButton"></button>
+ <button class="custom-appearance remove-user-button" hidden></button>
+ </div>
+</div>
+
+<!-- Extra elements that are appended to above "user-pod-template" for public
+ account user pod. Note that only the children of the template div are
+ appended. -->
+<div id="public-account-user-pod-extras-template" hidden>
+ <div class="side-pane-divider"></div>
+ <div class="side-pane-container">
+ <div class="side-pane-contents">
+ <div class="side-pane-name"></div>
+ <p class="info" i18n-content="publicAccountInfo"></p>
+ <p class="reminder" i18n-content="publicAccountReminder"></p>
+ <button class="enter-button" i18n-content="publicAccountEnter"></button>
+ </div>
+ </div>
</div>

Powered by Google App Engine
This is Rietveld 408576698