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

Unified Diff: remoting/webapp/main.html

Issue 15685008: Show a 'remember me' checkbox in the web-app when connecting to a host that supports pairing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reviewer comments. Created 7 years, 7 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
« no previous file with comments | « remoting/webapp/main.css ('k') | remoting/webapp/session_connector.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/main.html
diff --git a/remoting/webapp/main.html b/remoting/webapp/main.html
index 341aa5d788b0adcca8fad55ed662fe21838f88dc..89d0ec75416a090f5b34ecd9a63000cf45d7cf52 100644
--- a/remoting/webapp/main.html
+++ b/remoting/webapp/main.html
@@ -521,35 +521,39 @@ found in the LICENSE file.
</div>
</div> <!-- home.client.host-needs-upgrade -->
- <div data-ui-mode="home.client.pin-prompt" class="centered">
+ <div data-ui-mode="home.client.pin-prompt">
<div id="pin-message"
i18n-content="PIN_MESSAGE"
class="message"></div>
- <div>
- <form id="pin-form" action="">
- <label for="pin-entry"
- i18n-content="PIN"
- class="editbox-label"></label>
- <input id="pin-entry"
- type="password"
- autofocus="autofocus"
- autocomplete="off"/>
- <button id="connect-button"
- type="submit"
- i18n-content="CONNECT_BUTTON">
- </button>
- <button id="cancel-pin-entry-button"
- type="button"
- i18n-content="CANCEL">
- </button>
- </form>
- <div id="startup-mode-box-me2me" class="information-box" hidden>
- <span i18n-content="WARNING_NOT_WINDOWED"></span>
- <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
- target="_blank"
- i18n-content="LEARN_HOW"></a>
- </div> <!-- startup-mode-box-it2me -->
- </div>
+ <form id="pin-form" action="" class="centered">
+ <label for="pin-entry"
+ i18n-content="PIN"
+ class="editbox-label"></label>
+ <input id="pin-entry"
+ type="password"
+ autofocus="autofocus"
+ autocomplete="off"/>
+ <button id="connect-button"
+ type="submit"
+ i18n-content="CONNECT_BUTTON">
+ </button>
+ <button id="cancel-pin-entry-button"
+ type="button"
+ i18n-content="CANCEL">
+ </button>
+ </form>
+ <label id="remember-pin" class="checkbox-label">
+ <input id="remember-pin-checkbox" type="checkbox">
+ <span i18n-content="REMEMBER_PIN"></span>
+ </label>
+ <div id="startup-mode-box-me2me"
+ class="information-box centered"
+ hidden>
+ <span i18n-content="WARNING_NOT_WINDOWED"></span>
+ <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
+ target="_blank"
+ i18n-content="LEARN_HOW"></a>
+ </div> <!-- startup-mode-box-it2me -->
</div> <!-- client.pin-prompt -->
<div data-ui-mode="home.client.third-party-auth" class="centered">
« no previous file with comments | « remoting/webapp/main.css ('k') | remoting/webapp/session_connector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698