summaryrefslogtreecommitdiffstats
path: root/mobile/android/chrome/content/aboutLogins.xhtml
blob: 02225d43a74f0c5c5d65869a6b57d486f2534c59 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd" >
%globalDTD;
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
%brandDTD;
<!ENTITY % aboutDTD SYSTEM "chrome://browser/locale/aboutLogins.dtd" >
%aboutDTD;
]>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>&aboutLogins.title;</title>
    <meta name="viewport" content="width=device-width; user-scalable=0" />
    <link rel="icon" type="image/png" sizes="64x64" href="chrome://branding/content/favicon64.png" />
    <link rel="stylesheet" href="chrome://browser/skin/spinner.css" type="text/css"/>
    <link rel="stylesheet" href="chrome://browser/skin/aboutBase.css" type="text/css"/>
    <link rel="stylesheet" href="chrome://browser/skin/aboutLogins.css" type="text/css"/>
    <script type="application/javascript;version=1.8" src="chrome://browser/content/aboutLogins.js"></script>
  </head>
  <body dir="&locale.dir;">

    <div id="logins-list-page">
      <div id="logins-header" class="header">
        <div>&aboutLogins.title;</div>
        <ul class="toolbar-buttons">
          <li id="filter-button"></li>
        </ul>
      </div>
      <div id="content-body">
        <div id="logins-list" class="list"/>
        <div id="filter-input-container" hidden="true">
          <input id="filter-input" type="search"/>
          <div id="filter-clear"/>
        </div>
      </div>
      <div id="logins-list-loading-body" class="hidden">
        <div id="loading-img-container">

          <div id="spinner" class="mui-refresh-main">
            <div class="mui-refresh-wrapper">
              <div class="mui-spinner-wrapper">
                <div class="mui-spinner-main">
                  <div class="mui-spinner-left">
                    <div class="mui-half-circle-left" />
                  </div>
                  <div class="mui-spinner-right">
                    <div class="mui-half-circle-right" />
                  </div>
                </div>
              </div>
            </div>
          </div>

        </div>
      </div>
      <div id="empty-body" class="hidden">
        <div id="empty-obj-text-container">
          <object type="image/svg+xml" id="empty-icon" data="chrome://browser/skin/images/icon_key_emptypage.svg"/>
          <div class="empty-text">&aboutLogins.emptyLoginText;</div>
          <div class="empty-hint">&aboutLogins.emptyLoginHint;</div>
        </div>
      </div>
    </div>

    <div id="edit-login-page" class="hidden">
      <div id="edit-login-header" class="header">
        <div id="edit-login-header-text"/>
      </div>
      <div class="edit-login-div">
        <div id="favicon" class="edit-login-icon"/>
          <input type="text" name="hostname" id="hostname" class="edit-login-input"/>
      </div>
      <div class="edit-login-div">
        <input type="text" name="username" id="username" class="edit-login-input" autocomplete="off"/>
      </div>
      <div class="edit-login-div">
        <input type="password" id="password" name="password" value="password" class="edit-login-input" />
        <button id="password-btn"></button>
      </div>
      <div class="edit-login-div">
        <button id="update-btn" class="update-button">&aboutLogins.update;</button>
      </div>
    </div>

  </body>
</html>