diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-29 00:42:39 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-29 00:42:39 +0000 |
commit | 813857e5d8e9c9aace7728629d361229a0e91b34 (patch) | |
tree | c192681aedc955e9287aaad6f0381995524c1a15 /remoting/webapp/main.html | |
parent | 39f216a432df927ff25c425dcf3047dbe1565517 (diff) | |
download | chromium_src-813857e5d8e9c9aace7728629d361229a0e91b34.zip chromium_src-813857e5d8e9c9aace7728629d361229a0e91b34.tar.gz chromium_src-813857e5d8e9c9aace7728629d361229a0e91b34.tar.bz2 |
PIN dialog clean-ups.
* Move the "Why is this safe?" link up so that it's clear it refers to
the PIN, not to the usage stats consent checkbox.
* Move the PIN error message above the usage stats consent checkbox.
BUG=171596
Review URL: https://chromiumcodereview.appspot.com/12041079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179227 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/main.html')
-rw-r--r-- | remoting/webapp/main.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html index a3cbb54..d1b9a75 100644 --- a/remoting/webapp/main.html +++ b/remoting/webapp/main.html @@ -264,10 +264,14 @@ found in the LICENSE file. <form id="ask-pin-form" data-ui-mode="home.host-setup.ask-pin" action=""> - <p class="message" - i18n-content="HOST_SETUP_DIALOG_DESCRIPTION" - i18n-value-1="<b>" - i18n-value-2="</b>"></p> + <p class="message"> + <span i18n-content="HOST_SETUP_DIALOG_DESCRIPTION" + i18n-value-1="<b>" + i18n-value-2="</b>"></span> + <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523" + target="_blank" + i18n-content="WHY_IS_THIS_SAFE"></a> + </p> <table id="set-pin-table"> <tr> <td class="table-label"> @@ -292,21 +296,17 @@ found in the LICENSE file. </td> <tr> </table> + <div id="daemon-pin-error-div" class="message centered" hidden> + <span id="daemon-pin-error-message" class="error-state"> + </span> + </div> <div id="usagestats-consent" hidden> <label class="checkbox-label"> <input id="usagestats-consent-checkbox" type="checkbox"> <span i18n-content="HOST_SETUP_CRASH_REPORTING_MESSAGE"></span> </label> </div> - <div id="daemon-pin-error-div" class="message centered" hidden> - <span id="daemon-pin-error-message" class="error-state"> - </span> - </div> <div class="box"> - <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523" - target="_blank" - id="why-is-this-safe" - i18n-content="WHY_IS_THIS_SAFE"></a> <div class="box-spacer"></div> <button id="daemon-pin-ok" type="submit" i18n-content="OK"> </button> |