add first cut at some wizard pages

This commit is contained in:
alecf%netscape.com 1999-06-25 00:31:19 +00:00
parent e5214d97ce
commit b6f32dc87c
2 changed files with 105 additions and 0 deletions

View File

@ -0,0 +1,52 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/" type="text/css"?>
<!--
The contents of this file are subject to the Netscape 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/NPL/
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 Communicator client code, released
March 31, 1998.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998-1999 Netscape Communications Corporation. All
Rights Reserved.
-->
<!DOCTYPE window
[
<!ENTITY accountTypeTitle.label "Mail or news:">
<!ENTITY accountTypeDesc.label "Select the type of account to set up:">
<!ENTITY accountTypeMail.label "Mail">
<!ENTITY accountTypeNews.label "News">
]>
<window id="accounttype" xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="parent.wizardPageLoaded('accounttype');">
<box alignment="vertical" style="width: 100%; height: 100%">
<html:div>
<html:div>&accountTypeTitle.label;</html:div>
<html:div>&accountTypeDesc.label;</html:div>
</html:div>
<box alignment="vertical">
<html:div>
<html:input type="radio" name="acctyperadio" id="mailaccount" value="mail"/>
&accountTypeMail.label;
</html:div>
<html:div>
<html:input type="radio" name="acctyperadio" id="newsaccount" value="news"/>
&accountTypeNews.label;
</html:div>
</box>
</box>
</window>

View File

@ -0,0 +1,53 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/" type="text/css"?>
<!--
The contents of this file are subject to the Netscape 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/NPL/
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 Communicator client code, released
March 31, 1998.
The Initial Developer of the Original Code is Netscape
Communications Corporation. Portions created by Netscape are
Copyright (C) 1998-1999 Netscape Communications Corporation. All
Rights Reserved.
-->
<!DOCTYPE window
[
<!ENTITY mailTypeTitle.label "Netscape WebMail or Other Mail:">
<!ENTITY mailTypeDesc.label "Select a free Netscape WebMail account or other mail account, such as your ISP or company mail.">
<!ENTITY mailTypeWebMail.label "Netscape WebMail">
<!ENTITY mailTypeOtherMail.label "Other Mail">
]>
<window id="mailtype" xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="parent.wizardPageLoaded('mailtype');">
<box alignment="vertical" style="width: 100%; height: 100%">
<html:div>
<html:div>&mailTypeTitle.label;</html:div>
<html:div>&mailTypeDesc.label;</html:div>
</html:div>
<box alignment="vertical">
<html:div>
<html:input type="radio" name="acctyperadio" id="mailaccount"/>
&accountTypeMail.label;
</html:div>
<html:div>
<html:input type="radio" name="acctyperadio" id="mailaccount"/>
&accountTypeMail.label;
</html:div>
</box>
</box>
</window>