summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/html/dialog_client_pin_prompt.html
blob: 992b1e9a43c5960d7b216bab974c45562f14852b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!--
Copyright (c) 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<div data-ui-mode="home.client.pin-prompt">
  <div id="pin-message"
       i18n-content="PIN_MESSAGE"
       class="message"></div>

  <form id="pin-form" action="">
    <table class="centered">
      <tr>
        <td>
          <label for="pin-entry"
                 i18n-content="PIN"
                 class="editbox-label"></label>
        </td>
        <td>
          <input id="pin-entry"
                 type="password"
                 autofocus="autofocus"
                 autocomplete="off"/>
          <button id="pin-connect-button"
                  type="submit"
                  i18n-content="CONNECT_BUTTON">
          </button>
          <button id="cancel-pin-entry-button"
                  type="button"
                  i18n-content="CANCEL">
          </button>
        </td>
      </tr>
      <tr>
        <td>
          <!-- Empty cell to align the checkbox and PIN entry. -->
        </td>
        <td>
          <label id="remember-pin" class="checkbox-label">
            <input id="remember-pin-checkbox" type="checkbox">
            <span i18n-content="REMEMBER_PIN"></span>
          </label>
        </td>
      </tr>
    </table>
  </form>

  <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 -->