File: passwordPrompt.xhtml

package info (click to toggle)
tbsync 4.16-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,380 kB
  • sloc: javascript: 4,203; makefile: 21; sh: 9
file content (32 lines) | stat: -rw-r--r-- 1,697 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://tbsync/content/passwordPrompt/passwordPrompt.css" type="text/css"?>

<window
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    xmlns:html="http://www.w3.org/1999/xhtml"
    title="__TBSYNCMSG_password.title__"
    onload="tbSyncPassword.onload();">

    <script type="application/javascript" src="chrome://tbsync/content/passwordPrompt/passwordPrompt.js"/>
    <script type="text/javascript" src="chrome://tbsync/content/scripts/locales.js" /> 

    <vbox flex="1">
        <description style="padding: 5px; width: 350px;">__TBSYNCMSG_password.description__</description>

        <html:div class="grid-container">
            <html:div class="grid-item"><label value="__TBSYNCMSG_password.account__"/></html:div>
            <html:div class="grid-item"><label class="header"  id="tbsync.account" /></html:div>
            <html:div class="grid-item"><label value="__TBSYNCMSG_password.user__"/></html:div>
            <html:div class="grid-item"><html:input id="tbsync.user" /></html:div>
            <html:div class="grid-item"><label value="__TBSYNCMSG_password.password__"/></html:div>
            <html:div class="grid-item"><html:input type="password" id="tbsync.password"/></html:div>
        </html:div>
        <hbox style="padding: 5px">
            <vbox flex="1"></vbox>
            <button id="tbsync.password.ok" label="__TBSYNCMSG_password.ok__" />
            <button id="tbsync.password.cancel" label="__TBSYNCMSG_password.cancel__" />
        </hbox>
    </vbox>

</window>