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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/main.css ('k') | remoting/webapp/session_connector.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <meta charset="utf-8"> 10 <meta charset="utf-8">
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 i18n-content="CONNECT_ANYWAY" 514 i18n-content="CONNECT_ANYWAY"
515 autofocus="autofocus"> 515 autofocus="autofocus">
516 </button> 516 </button>
517 <button id="host-needs-update-cancel-button" 517 <button id="host-needs-update-cancel-button"
518 type="button" 518 type="button"
519 i18n-content="CANCEL"> 519 i18n-content="CANCEL">
520 </button> 520 </button>
521 </div> 521 </div>
522 </div> <!-- home.client.host-needs-upgrade --> 522 </div> <!-- home.client.host-needs-upgrade -->
523 523
524 <div data-ui-mode="home.client.pin-prompt" class="centered"> 524 <div data-ui-mode="home.client.pin-prompt">
525 <div id="pin-message" 525 <div id="pin-message"
526 i18n-content="PIN_MESSAGE" 526 i18n-content="PIN_MESSAGE"
527 class="message"></div> 527 class="message"></div>
528 <div> 528 <form id="pin-form" action="" class="centered">
529 <form id="pin-form" action=""> 529 <label for="pin-entry"
530 <label for="pin-entry" 530 i18n-content="PIN"
531 i18n-content="PIN" 531 class="editbox-label"></label>
532 class="editbox-label"></label> 532 <input id="pin-entry"
533 <input id="pin-entry" 533 type="password"
534 type="password" 534 autofocus="autofocus"
535 autofocus="autofocus" 535 autocomplete="off"/>
536 autocomplete="off"/> 536 <button id="connect-button"
537 <button id="connect-button" 537 type="submit"
538 type="submit" 538 i18n-content="CONNECT_BUTTON">
539 i18n-content="CONNECT_BUTTON"> 539 </button>
540 </button> 540 <button id="cancel-pin-entry-button"
541 <button id="cancel-pin-entry-button" 541 type="button"
542 type="button" 542 i18n-content="CANCEL">
543 i18n-content="CANCEL"> 543 </button>
544 </button> 544 </form>
545 </form> 545 <label id="remember-pin" class="checkbox-label">
546 <div id="startup-mode-box-me2me" class="information-box" hidden> 546 <input id="remember-pin-checkbox" type="checkbox">
547 <span i18n-content="WARNING_NOT_WINDOWED"></span> 547 <span i18n-content="REMEMBER_PIN"></span>
548 <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answ er=1649523" 548 </label>
549 target="_blank" 549 <div id="startup-mode-box-me2me"
550 i18n-content="LEARN_HOW"></a> 550 class="information-box centered"
551 </div> <!-- startup-mode-box-it2me --> 551 hidden>
552 </div> 552 <span i18n-content="WARNING_NOT_WINDOWED"></span>
553 <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer =1649523"
554 target="_blank"
555 i18n-content="LEARN_HOW"></a>
556 </div> <!-- startup-mode-box-it2me -->
553 </div> <!-- client.pin-prompt --> 557 </div> <!-- client.pin-prompt -->
554 558
555 <div data-ui-mode="home.client.third-party-auth" class="centered"> 559 <div data-ui-mode="home.client.third-party-auth" class="centered">
556 <div id="third-party-auth-message" 560 <div id="third-party-auth-message"
557 i18n-content="DESCRIPTION_THIRD_PARTY_AUTH" 561 i18n-content="DESCRIPTION_THIRD_PARTY_AUTH"
558 class="message"></div> 562 class="message"></div>
559 <div id="third-party-auth-url" 563 <div id="third-party-auth-url"
560 class="message"></div> 564 class="message"></div>
561 <div> 565 <div>
562 <button id="third-party-auth-button" 566 <button id="third-party-auth-button"
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 <div class="arrow-down"></div> 713 <div class="arrow-down"></div>
710 </div> 714 </div>
711 </div> <!-- session-toolbar --> 715 </div> <!-- session-toolbar -->
712 </div> <!-- session-mode --> 716 </div> <!-- session-mode -->
713 717
714 <div id="statistics" dir="ltr" class="selectable" hidden> 718 <div id="statistics" dir="ltr" class="selectable" hidden>
715 </div> <!-- statistics --> 719 </div> <!-- statistics -->
716 720
717 </body> 721 </body>
718 </html> 722 </html>
OLDNEW
« 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