OLD | NEW |
1 <div id="settings" class="page" hidden> | 1 <div id="settings" class="page" hidden> |
2 <header> | 2 <header> |
3 <h1 i18n-content="settingsTitle"></h1> | 3 <h1 i18n-content="settingsTitle"></h1> |
4 </header> | 4 </header> |
5 <include src="reset_profile_settings_banner.html"> | 5 <include src="reset_profile_settings_banner.html"> |
6 <include src="automatic_settings_reset_banner.html"> | 6 <include src="automatic_settings_reset_banner.html"> |
7 <if expr="chromeos"> | 7 <if expr="chromeos"> |
8 <include src="secondary_user_banner.html"> | 8 <include src="secondary_user_banner.html"> |
9 <section> | 9 <section> |
10 <div id="network-section-header" class="section-header"> | 10 <div id="network-section-header" class="section-header"> |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 i18n-content="managePasswords"> | 449 i18n-content="managePasswords"> |
450 </button> | 450 </button> |
451 </span> | 451 </span> |
452 </span> | 452 </span> |
453 </div> | 453 </div> |
454 <if expr="is_macosx"> | 454 <if expr="is_macosx"> |
455 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden> | 455 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden> |
456 </div> | 456 </div> |
457 </if> | 457 </if> |
458 </section> | 458 </section> |
| 459 <section id="easy-unlock-section" guest-visibility="hidden" hidden> |
| 460 <h3 i18n-content="easyUnlockSectionTitle"></h3> |
| 461 <!-- Options shown when the user has not set up Easy Unlock --> |
| 462 <div id='easy-unlock-setup' hidden> |
| 463 <button id="easy-unlock-setup-button" |
| 464 i18n-content="easyUnlockSetupButton"></button> |
| 465 <div> |
| 466 <a target="_blank" i18n-content="learnMore" |
| 467 i18n-values="href:easyUnlockLearnMoreURL"></a> |
| 468 </div> |
| 469 </div> |
| 470 <!-- Options shown when the user has set up Easy Unlock --> |
| 471 <div id='easy-unlock-enable' hidden> |
| 472 <div class="checkbox"> |
| 473 <span class="controlled-setting-with-label"> |
| 474 <input id="easy-unlock-check" type="checkbox" |
| 475 pref="easy_unlock.enabled" |
| 476 metric="EasyUnlock_Enabled"> |
| 477 <span> |
| 478 <label for="easy-unlock-checkbox"> |
| 479 <span i18n-content="easyUnlockCheckboxLabel"></span> |
| 480 <a target="_blank" i18n-content="learnMore" |
| 481 i18n-values="href:easyUnlockLearnMoreURL"></a> |
| 482 </label> |
| 483 <span class="controlled-setting-indicator" |
| 484 pref="easy_unlock.enabled"> |
| 485 </span> |
| 486 </span> |
| 487 </span> |
| 488 </div> |
| 489 <div> |
| 490 <a target="_blank" i18n-content="easyUnlockManagement" |
| 491 i18n-values="href:easyUnlockManagementURL"></a> |
| 492 </div> |
| 493 </div> |
| 494 </section> |
459 <section id="web-content-section"> | 495 <section id="web-content-section"> |
460 <h3 i18n-content="advancedSectionTitleContent"></h3> | 496 <h3 i18n-content="advancedSectionTitleContent"></h3> |
461 <div> | 497 <div> |
462 <div class="settings-row"> | 498 <div class="settings-row"> |
463 <label class="web-content-select-label"> | 499 <label class="web-content-select-label"> |
464 <span i18n-content="defaultFontSizeLabel"></span> | 500 <span i18n-content="defaultFontSizeLabel"></span> |
465 <select id="defaultFontSize"> | 501 <select id="defaultFontSize"> |
466 <option value="9" i18n-content="fontSizeLabelVerySmall"> | 502 <option value="9" i18n-content="fontSizeLabelVerySmall"> |
467 </option> | 503 </option> |
468 <option value="12" i18n-content="fontSizeLabelSmall"></option> | 504 <option value="12" i18n-content="fontSizeLabelSmall"></option> |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 </div> | 938 </div> |
903 </section> | 939 </section> |
904 </div> <!-- advanced-settings-container --> | 940 </div> <!-- advanced-settings-container --> |
905 </div> <!-- advanced-settings --> | 941 </div> <!-- advanced-settings --> |
906 <footer> | 942 <footer> |
907 <button id="advanced-settings-expander" class="link-button" | 943 <button id="advanced-settings-expander" class="link-button" |
908 i18n-content="showAdvancedSettings"> | 944 i18n-content="showAdvancedSettings"> |
909 </button> | 945 </button> |
910 </footer> | 946 </footer> |
911 </div> | 947 </div> |
OLD | NEW |