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

Unified Diff: chrome/browser/resources/options/chromeos_accounts_options.html

Issue 2935011: Initial accounts options page. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: use ListItem directly for now per arv Created 10 years, 5 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/options/chromeos_accounts_options.html
diff --git a/chrome/browser/resources/options/chromeos_accounts_options.html b/chrome/browser/resources/options/chromeos_accounts_options.html
new file mode 100644
index 0000000000000000000000000000000000000000..1369cd55fbcc5fc2ebeaad5ad258b3781ec15e3e
--- /dev/null
+++ b/chrome/browser/resources/options/chromeos_accounts_options.html
@@ -0,0 +1,29 @@
+<div class="page hidden" id="accountsPage">
+ <h1 i18n-content="accountsPage"></h1>
+ <div class="option">
+ <table class="option-control-table">
+ <tr>
+ <td class="option-name"><label><input id="allowBwsiCheck"
+ pref="cros.accounts.allowBWSI" type="checkbox"><span
+ i18n-content="allow_BWSI"></span></label></td>
+ </tr>
+ <tr>
+ <td class="option-name"><label><input id="allowGuestCheck"
+ pref="cros.accounts.allowGuest" type="checkbox"><span
+ i18n-content="allow_guest"></span></label></td>
+ </tr>
+ <tr>
+ <td class="option-name" i18n-content="user_list_title"></td>
+ </tr>
+ <tr><td class="option-name">
+ <list id="userList"></list>
+ </td></tr>
+ <tr><td class="option-name">
+ <button id="addUserButton"
+ i18n-content="add_user"></button>
+ <button id="removeUserButton" disabled
+ i18n-content="remove_user"></button>
+ </td></tr>
+ </table>
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698