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