home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.swcp.com
/
ftp.swcp.com.zip
/
ftp.swcp.com
/
mac
/
mozilla-mac-0.9.sea.hqx
/
mozilla-mac-0.9
/
Chrome
/
pippki.jar
/
content
/
pippki
/
changepassword.xul
< prev
next >
Wrap
Extensible Markup Language
|
2001-05-05
|
4KB
|
151 lines
<?xml version="1.0"?>
<!--
- The contents of this file are subject to the Mozilla Public
- License Version 1.1 (the "License"); you may not use this file
- except in compliance with the License. You may obtain a copy of
- the License at http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS
- IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
- implied. See the License for the specific language governing
- rights and limitations under the License.
-
- The Original Code is mozilla.org code.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corp. Portions created by Netscape are
- Copyright (C) 2001 Netscape Communications Corp. All
- Rights Reserved.
-
- Contributor(s):
- Bob Lord <lord@netscape.com>
- Terry Hayes <thayes@netscape.com>
-->
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://pippki/locale/pippki.dtd">
<window
id="set_password" title="&setPassword.title;"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
debug="false"
height="320"
width="300"
onload="onLoad();"
>
<script src="password.js"/>
<box orient="vertical" style="margin: 5px;" flex="1">
<box orient="horizontal">
<text value="&setPassword.tokenName.label;:"/>
<text id="tokenName" />
<!--
<menulist id="signerList" disabled="true">
<menupopup>
<menuitem id="token-menu" label="Built-in private key database"/>
<menuitem label="Bob Lord's iButton"/>
</menupopup>
</menulist>
-->
</box>
<separator />
<grid>
<columns>
<column />
<column />
</columns>
<rows>
<row>
<text value="&setPassword.oldPassword.label;: " />
<textbox id="oldpw" maxlength="30" disabled="true" value="(password not set)"/>
</row>
<row>
<text value="&setPassword.newPassword.label;" />
<textbox id="pw1" type="password" maxlength="30"
onkeypress="setPasswordStrength(); checkPasswords();"/>
</row>
<row>
<text value="&setPassword.reenterPassword.label;" />
<textbox id="pw2" type="password" maxlength="30" onkeypress="checkPasswords();"/>
</row>
</rows>
</grid>
<text value="&setPassword.meter.label;"/>
<grid style="margin: 4px;">
<rows>
<row/>
</rows>
<columns>
<column>
<text value="&setPassword.meter.bad;"/>
</column>
<column style="margin: 5px;">
<progressmeter
flex="1"
id="pwmeter"
mode="determined"
value="0%"
align="horizontal"
label="&setPassword.meter.loading;"
width="200"
style="forground-color: red"
/>
</column>
<column>
<text value="&setPassword.meter.good;"/>
</column>
</columns>
</grid>
<grid>
<columns>
<column />
<column />
</columns>
<rows>
<row>
<text value="&setPassword.stats.total;"/>
<textbox id="pwchars" size="2" readonly="true"/>
</row>
<row>
<text value="&setPassword.stats.numbers;"/>
<textbox id="pwnumbers" size="2" readonly="true"/>
</row>
<row>
<text value="&setPassword.stats.symbols;"/>
<textbox id="pwsymbols" size="2" readonly="true"/>
</row>
<row>
<text value="&setPassword.stats.upper;"/>
<textbox id="pwupper" size="2" readonly="true"/>
</row>
</rows>
</grid>
<box>
<button id="ok-button" class="dialog" label="&ok.label;"
style="width: 8ex" oncommand="setPassword();" disabled="true"/>
<button id="cancel-button" class="dialog" label="&cancel.label;"
style="width: 8ex" oncommand="window.close();" />
<button id="help-button" class="dialog" label="&help.label;"
style="width: 8ex" oncommand="alert('The old password you entered is incorrect. Try again.');" />
</box>
</box>
</window>