summaryrefslogtreecommitdiffstats
path: root/mobile/android/chrome/content/aboutLogins.xhtml
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /mobile/android/chrome/content/aboutLogins.xhtml
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'mobile/android/chrome/content/aboutLogins.xhtml')
-rw-r--r--mobile/android/chrome/content/aboutLogins.xhtml90
1 files changed, 90 insertions, 0 deletions
diff --git a/mobile/android/chrome/content/aboutLogins.xhtml b/mobile/android/chrome/content/aboutLogins.xhtml
new file mode 100644
index 000000000..02225d43a
--- /dev/null
+++ b/mobile/android/chrome/content/aboutLogins.xhtml
@@ -0,0 +1,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>