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

Side by Side Diff: ui/login/account_picker/user_pod_template.html

Issue 2733953008: Add fingerprint UI in user pod (Closed)
Patch Set: consolidate strings Created 3 years, 9 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
OLDNEW
1 <dom-module id="user-pod-template-shared-styles"> 1 <dom-module id="user-pod-template-shared-styles">
2 <template> 2 <template>
3 <link rel="stylesheet" href="user_pod_template.css"> 3 <link rel="stylesheet" href="user_pod_template.css">
4 </template> 4 </template>
5 </dom-module> 5 </dom-module>
6 6
7 <style is="custom-style" include="user-pod-template-shared-styles"></style> 7 <style is="custom-style" include="user-pod-template-shared-styles"></style>
8 8
9 <iron-iconset-svg name="user-pod" size="24"> 9 <iron-iconset-svg name="user-pod" size="24">
10 <svg> 10 <svg>
(...skipping 28 matching lines...) Expand all
39 <div class="main-pane"> 39 <div class="main-pane">
40 <div class="name-container"> 40 <div class="name-container">
41 <div class="learn-more-container"> 41 <div class="learn-more-container">
42 <div class="learn-more"></div> 42 <div class="learn-more"></div>
43 </div> 43 </div>
44 <div class="name"></div> 44 <div class="name"></div>
45 </div> 45 </div>
46 <div class="auth-container"> 46 <div class="auth-container">
47 <!-- Password Authentication --> 47 <!-- Password Authentication -->
48 <div class="custom-icon-container" hidden></div> 48 <div class="custom-icon-container" hidden></div>
49 <if expr="chromeos">
50 <div class="fingerprint-icon-container" hidden>
51 <div class="fingerprint-icon-image"></div>
52 </div>
53 </if>
49 <div class="password-entry-container"> 54 <div class="password-entry-container">
50 <div class="password-container"> 55 <div class="password-container">
51 <input type="password" class="password" 56 <input type="password" class="password"
52 i18n-values="placeholder:passwordHint"> 57 i18n-values="placeholder:passwordHint">
53 </div> 58 </div>
54 <if expr="chromeos"> 59 <if expr="chromeos">
55 <div class="capslock-hint-container"> 60 <div class="capslock-hint-container">
56 <img class="capslock-hint" 61 <img class="capslock-hint"
57 src="chrome://theme/IDR_LOGIN_PASSWORD_CAPS_LOCK" alt> 62 src="chrome://theme/IDR_LOGIN_PASSWORD_CAPS_LOCK" alt>
58 </div> 63 </div>
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 i18n-values="aria-label:publicAccountEnterAccessibleName"> 206 i18n-values="aria-label:publicAccountEnterAccessibleName">
202 </paper-button> 207 </paper-button>
203 <div class="language-and-input-container"> 208 <div class="language-and-input-container">
204 <a class="language-and-input" href="#" role="button" 209 <a class="language-and-input" href="#" role="button"
205 i18n-content="publicSessionLanguageAndInput"></a> 210 i18n-content="publicSessionLanguageAndInput"></a>
206 </div> 211 </div>
207 </div> 212 </div>
208 </div> 213 </div>
209 </div> 214 </div>
210 </div> 215 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698